Skip to content

Commit

Permalink
replace ::set-output in notify-tap action
Browse files Browse the repository at this point in the history
Update the notify-tap.yml GitHub Action workflow to replace the
deprecated ::set-output command with the newer $GITHUB_OUTPUT file
mechanism.
  • Loading branch information
kenjenkins committed Aug 31, 2023
1 parent 0858c7e commit c030af6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/notify-tap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- id: clean_version
run: |
echo "::set-output name=release::${VERSION#v}"
echo "release=${VERSION#v}" >> $GITHUB_OUTPUT
env:
VERSION: "${{ steps.get_version.outputs.release }}"

Expand Down

0 comments on commit c030af6

Please sign in to comment.