Nightly release 'main' (publish: true) #56
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
# This workflow triggers nightly releases | |
name: Nightly release | |
run-name: "Nightly release '${{ inputs.git-ref || github.ref_name }}' (publish: ${{ inputs.publish || github.event_name == 'schedule' }})" | |
on: | |
workflow_dispatch: | |
inputs: | |
git-ref: | |
required: true | |
type: string | |
description: "The github ref of this nightly version (i.e. main, 1234567)" | |
default: main | |
publish: | |
required: false | |
type: boolean | |
default: false | |
description: "Publish the nightly release" | |
schedule: | |
- cron: '0 0 * * *' | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: write | |
jobs: | |
release: | |
name: Prepare nightly release | |
uses: ./.github/workflows/reusable_publish_version.yml | |
with: | |
environment: nightly | |
git-ref: ${{ inputs.git-ref || github.ref_name }} | |
publish: ${{ inputs.publish || github.event_name == 'schedule' }} | |
secrets: inherit |