Skip to content

Commit

Permalink
Merge pull request #2468 from arunsathiya/develop
Browse files Browse the repository at this point in the history
Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated
  • Loading branch information
hasparus authored Jan 16, 2024
2 parents 8f6426c + 8c76201 commit 02d49cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
needs: [build]
steps:
- id: can_release
run: echo '::set-output name=CAN_RELEASE::${{ env.CAN_RELEASE }}'
run: echo 'CAN_RELEASE=${{ env.CAN_RELEASE }}' >> $GITHUB_OUTPUT
env:
CAN_RELEASE: ${{ secrets.AUTO_RELEASE_GH_TOKEN != '' }}
outputs:
Expand Down

0 comments on commit 02d49cc

Please sign in to comment.