Nightly Build #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Build | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Semantic Version string to use for this nightly build. It should ends with `-SNAPSHOT`. If not, please take a look at the release workflow. | |
required: false | |
schedule: | |
- cron: "0 3 * * *" # run at 03:00 UTC | |
jobs: | |
Run-Tests: | |
uses: ./.github/workflows/verify.yaml | |
secrets: inherit | |
Publish: | |
if: always() | |
needs: [ Run-Tests ] | |
uses: eclipse-edc/.github/.github/workflows/technology-nightly.yml@main | |
secrets: inherit | |
with: | |
version: ${{ inputs.version }} |