Skip to content

Commit

Permalink
chore: fix deprecated set-output github workflow command (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcL authored Feb 15, 2023
1 parent 9284b0f commit c37721e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
tag_version=${branch:9}
tag=${tag_version%/*}
version=${tag_version##*/}
echo "::set-output name=tag::${tag}"
echo "::set-output name=version::${version}"
echo "tag=${tag}" >> $GITHUB_OUTPUT
echo "version=${version}" >> $GITHUB_OUTPUT
- name: Log versions
run: |-
echo tag=${{ steps.extract.outputs.tag }}
Expand Down

0 comments on commit c37721e

Please sign in to comment.