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 1bab43c commit f959507
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
run: echo "Run this step on release"

- name: Release tag - method 1
run: echo "${{ github.ref }}" | sed 's|^refs/tags/\(.*)$|TAGA=\1|g' >> $GITHUB_ENV
run: echo "${{ github.ref }}" | sed 's|^refs/tags/\(.*\)$|TAGA=\1|g' >> $GITHUB_ENV

- name: Release tag - disply
- name: Release tag - method 2
run: echo "${GITHUB_REF}"

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

0 comments on commit f959507

Please sign in to comment.