Skip to content

Commit

Permalink
chore: replace deprecated set-env with echo
Browse files Browse the repository at this point in the history
  • Loading branch information
Orkuncakilkaya committed Oct 30, 2023
1 parent c118ac2 commit c1e4f71
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 @@ -11,7 +11,7 @@ jobs:
steps:
- name: Extract Branch Name
run: |
echo ::set-env name=BRANCH_NAME::${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
echo BRANCH_NAME=${echo ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}} >> $GITHUB_OUTPUT
- name: Echo Branch Name
run: |
echo ${{ env.BRANCH_NAME }}

0 comments on commit c1e4f71

Please sign in to comment.