Fix scheduled nightly builds (#4120)
This commit is contained in:
parent
f6fb0527f3
commit
468d2166c6
1 changed files with 2 additions and 7 deletions
9
.github/workflows/nightly.yml
vendored
9
.github/workflows/nightly.yml
vendored
|
@ -2,16 +2,11 @@
|
|||
|
||||
name: Nightly release
|
||||
|
||||
run-name: "Nightly release '${{ inputs.git-ref }}' (publish: ${{ inputs.publish || github.event_name == 'schedule' }})"
|
||||
run-name: "Nightly release (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: 1.x
|
||||
publish:
|
||||
required: false
|
||||
type: boolean
|
||||
|
@ -34,6 +29,6 @@ jobs:
|
|||
with:
|
||||
environment: nightly
|
||||
extra-features: storage-surrealkv
|
||||
git-ref: ${{ inputs.git-ref }}
|
||||
git-ref: 1.x
|
||||
publish: ${{ inputs.publish || github.event_name == 'schedule' }}
|
||||
secrets: inherit
|
||||
|
|
Loading…
Reference in a new issue