Skip to content

Commit

Permalink
chore: fix GH Action tag output param
Browse files Browse the repository at this point in the history
- Reword 'Dry Run' checkbox (hopefully making it more clear)
  • Loading branch information
dougm committed Oct 3, 2024
1 parent 582eefa commit 4d0e69d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/govmomi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
type: string
default: 'v0.99.0'
dryrun:
description: 'Verify release workflow without pushing any changes (catches most but not all errors)'
description: 'Dry Run (verify workflow without pushing a release)'
type: boolean
required: false
default: true
Expand Down Expand Up @@ -102,9 +102,9 @@ jobs:
# check whether the new tag is also the latest
if [[ $LATEST == $TAG ]]; then
echo "islatest::true >> $GITHUB_OUTPUT"
echo "islatest=true >> $GITHUB_OUTPUT"
else
echo "islatest::false >> $GITHUB_OUTPUT"
echo "islatest=false >> $GITHUB_OUTPUT"
fi
- name: Push changes and tag to release branch
Expand Down

0 comments on commit 4d0e69d

Please sign in to comment.