Skip to content

Commit

Permalink
GITHUB_REF tag parsing removed "v" prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBackx committed May 29, 2021
1 parent 1ff1b88 commit 388523d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aur.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Version
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Version
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 388523d

Please sign in to comment.