Skip to content

Commit

Permalink
Release workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cdivitotawela committed Jul 3, 2024
1 parent f959507 commit 4a6d828
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
run: echo "${{ github.ref }}" | sed 's|^refs/tags/\(.*\)$|TAGA=\1|g' >> $GITHUB_ENV

- name: Release tag - method 2
run: echo "${GITHUB_REF}"
run: echo "TAGB=${GITHUB_REF#refs/tags/*}" >> $GITHUB_ENV

- name: Release tag - display
run: |
echo "Method 1 - ${{ env.TAGA }}"
echo "Method 1 - ${{ env.TAGA }}"
echo "Method 2 - ${{ env.TAGB }}"

0 comments on commit 4a6d828

Please sign in to comment.