Skip to content

Commit 4d0e69d

Browse files
committed
chore: fix GH Action tag output param
- Reword 'Dry Run' checkbox (hopefully making it more clear)
1 parent 582eefa commit 4d0e69d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/govmomi-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
type: string
2424
default: 'v0.99.0'
2525
dryrun:
26-
description: 'Verify release workflow without pushing any changes (catches most but not all errors)'
26+
description: 'Dry Run (verify workflow without pushing a release)'
2727
type: boolean
2828
required: false
2929
default: true
@@ -102,9 +102,9 @@ jobs:
102102
103103
# check whether the new tag is also the latest
104104
if [[ $LATEST == $TAG ]]; then
105-
echo "islatest::true >> $GITHUB_OUTPUT"
105+
echo "islatest=true >> $GITHUB_OUTPUT"
106106
else
107-
echo "islatest::false >> $GITHUB_OUTPUT"
107+
echo "islatest=false >> $GITHUB_OUTPUT"
108108
fi
109109
110110
- name: Push changes and tag to release branch

0 commit comments

Comments
 (0)