Skip to content

Commit bf4f4bc

Browse files
committed
fix scheduled releases
1 parent cb218fd commit bf4f4bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id: tag
2626
run: |
2727
echo "Upstream release = actions/runner: ${{ steps.runner.outputs.release }}"
28-
if [ "${{ github.event.inputs.version }}" = "latest" ]; then
28+
if [ "${{ github.event.inputs.version || 'latest' }}" = "latest" ]; then
2929
export TAG="${{ steps.runner.outputs.release }}"
3030
else
3131
export TAG="${{ github.event.inputs.version }}"

0 commit comments

Comments
 (0)