Skip to content

Commit

Permalink
chore: Replace deprecated set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Oct 15, 2022
1 parent df69d58 commit 7a941e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -48,9 +48,9 @@ jobs:
tag=${GITHUB_REF/refs\/tags\//}
version=${tag#v}
major=${version%%.*}
echo "::set-output name=tag::${tag}"
echo "::set-output name=version::${version}"
echo "::set-output name=major::${major}"
echo "tag=${tag}" >> $GITHUB_OUTPUT
echo "version=${version}" >> $GITHUB_OUTPUT
echo "major=${major}" >> $GITHUB_OUTPUT
- uses: release-drafter/release-drafter@master
with:
Expand Down

0 comments on commit 7a941e0

Please sign in to comment.