Fix scheduled nightly builds (#4120)

This commit is contained in:
Rushmore Mushambi 2024-05-30 19:11:45 +02:00 committed by GitHub
parent f6fb0527f3
commit 468d2166c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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