Remove github.ref_name from the nightly workflow (#4032)

This commit is contained in:
Rushmore Mushambi 2024-05-13 19:28:34 +02:00 committed by GitHub
parent 63a7caf40e
commit 8b211c90f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@
name: Nightly release
run-name: "Nightly release '${{ inputs.git-ref || github.ref_name }}' (publish: ${{ inputs.publish || github.event_name == 'schedule' }})"
run-name: "Nightly release '${{ inputs.git-ref }}' (publish: ${{ inputs.publish || github.event_name == 'schedule' }})"
on:
workflow_dispatch:
@ -34,6 +34,6 @@ jobs:
with:
environment: nightly
extra-features: storage-surrealkv
git-ref: ${{ inputs.git-ref || github.ref_name }}
git-ref: ${{ inputs.git-ref }}
publish: ${{ inputs.publish || github.event_name == 'schedule' }}
secrets: inherit