Skip to content

Commit

Permalink
Use GITHUB_OUTPUT instead of deprecated ::set-output (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Jan 11, 2024
1 parent 8460c28 commit 4bd8b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
- name: Set the commit SHA
id: sha
run: echo "::set-output name=commitSha::$(if [ -z "$SHA" ]; then echo $GITHUB_SHA; else echo $SHA; fi)"
run: echo "commitSha=$(if [ -z "$SHA" ]; then echo $GITHUB_SHA; else echo $SHA; fi)" >> "$GITHUB_OUTPUT"
env:
SHA: ${{ github.event.inputs.sha }}
- name: Set the tag
Expand All @@ -30,7 +30,7 @@ jobs:
# v1.2.3 is parsed into $1 = "v1.", $2 = "2", $3 = ".3"
# and concatenated back into v1.3.0
new_tag="$(echo "$last_tag" | perl -pe 's/^(v\d+\.)(\d+)(\.\d+)$/$1.($2+1).".0"/e')"
echo "::set-output name=newTag::$(if [ -z "$TAG" ]; then echo $new_tag; else echo $TAG; fi)"
echo "newTag=$(if [ -z "$TAG" ]; then echo $new_tag; else echo $TAG; fi)" >> "$GITHUB_OUTPUT"
env:
TAG: ${{ github.event.inputs.tag }}
- uses: tibdex/[email protected]
Expand Down

0 comments on commit 4bd8b8c

Please sign in to comment.