Skip to content

Commit 9cf49ac

Browse files
author
Marc Littlemore
committed
fix: change deprecated set-output github actions
1 parent b36f937 commit 9cf49ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
tag_version=${branch:9}
2626
tag=${tag_version%/*}
2727
version=${tag_version##*/}
28-
echo "::set-output name=tag::${tag}"
29-
echo "::set-output name=version::${version}"
28+
echo "tag=${tag}" >> $GITHUB_OUTPUT
29+
echo "version=${version}" >> $GITHUB_OUTPUT
3030
- name: Log versions
3131
run: |-
3232
echo tag=${{ steps.extract.outputs.tag }}

0 commit comments

Comments
 (0)