Skip to content

Commit

Permalink
fix(ci): change environment variable access for release pipeline tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
muhlba91 committed Nov 26, 2024
1 parent 93298d8 commit ed3c4c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,6 @@ jobs:
- run: |
REF_NAME=`git describe --abbrev=0 --tags`
echo "REF_NAME=${REF_NAME}" >> $GITHUB_ENV
git tag -a sdk/${{ env.REF_NAME }} -m sdk/${{ env.REF_NAME }}
git push origin sdk/${{ env.REF_NAME }}
echo "found tag: $REF_NAME"
git tag -a sdk/$REF_NAME -m sdk/$REF_NAME
git push origin sdk/$REF_NAME

0 comments on commit ed3c4c4

Please sign in to comment.