2023-12-11 13:58:43 +00:00
|
|
|
# This workflow triggers nightly releases
|
|
|
|
|
2022-09-22 13:56:27 +00:00
|
|
|
name: Nightly release
|
|
|
|
|
2023-12-05 11:52:09 +00:00
|
|
|
run-name: "Nightly release '${{ inputs.git-ref || github.ref_name }}' (publish: ${{ inputs.publish || github.event_name == 'schedule' }})"
|
|
|
|
|
2022-09-22 13:56:27 +00:00
|
|
|
on:
|
2023-03-31 18:58:42 +00:00
|
|
|
workflow_dispatch:
|
2023-12-05 11:52:09 +00:00
|
|
|
inputs:
|
|
|
|
git-ref:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
description: "The github ref of this nightly version (i.e. main, 1234567)"
|
2024-04-16 09:08:04 +00:00
|
|
|
default: 1.x
|
2023-12-05 11:52:09 +00:00
|
|
|
publish:
|
|
|
|
required: false
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
description: "Publish the nightly release"
|
2022-09-22 13:56:27 +00:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
|
|
|
|
2023-03-30 20:14:06 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2023-12-11 13:58:43 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2022-09-22 13:56:27 +00:00
|
|
|
jobs:
|
2023-12-05 11:52:09 +00:00
|
|
|
release:
|
|
|
|
name: Prepare nightly release
|
|
|
|
uses: ./.github/workflows/reusable_publish_version.yml
|
|
|
|
with:
|
2023-12-11 13:58:43 +00:00
|
|
|
environment: nightly
|
2024-02-22 13:50:19 +00:00
|
|
|
extra-features: storage-surrealkv
|
2023-12-05 11:52:09 +00:00
|
|
|
git-ref: ${{ inputs.git-ref || github.ref_name }}
|
|
|
|
publish: ${{ inputs.publish || github.event_name == 'schedule' }}
|
|
|
|
secrets: inherit
|