We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 582eefa commit 4d0e69dCopy full SHA for 4d0e69d
.github/workflows/govmomi-release.yaml
@@ -23,7 +23,7 @@ on:
23
type: string
24
default: 'v0.99.0'
25
dryrun:
26
- description: 'Verify release workflow without pushing any changes (catches most but not all errors)'
+ description: 'Dry Run (verify workflow without pushing a release)'
27
type: boolean
28
required: false
29
default: true
@@ -102,9 +102,9 @@ jobs:
102
103
# check whether the new tag is also the latest
104
if [[ $LATEST == $TAG ]]; then
105
- echo "islatest::true >> $GITHUB_OUTPUT"
+ echo "islatest=true >> $GITHUB_OUTPUT"
106
else
107
- echo "islatest::false >> $GITHUB_OUTPUT"
+ echo "islatest=false >> $GITHUB_OUTPUT"
108
fi
109
110
- name: Push changes and tag to release branch
0 commit comments