Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya authored Sep 6, 2024
1 parent 5b12a60 commit 82bfa8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
shell: bash

- name: Install GitVersion
Expand Down

0 comments on commit 82bfa8f

Please sign in to comment.