Skip to content

Commit

Permalink
fix: set-output warning
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Mar 19, 2023
1 parent 48febe6 commit 1ae3a5d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:

- name: 🌵 Retrieve branch name
id: branch
run: echo "::set-output name=ref::${GITHUB_REF##*/}"
run: |
branch_name=${GITHUB_REF##*/}
echo "ref=${branch_name}" >> $GITHUB_ENV
- name: ⛽ Setup Variables
run: |
Expand Down

0 comments on commit 1ae3a5d

Please sign in to comment.