Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-haley authored Apr 10, 2024
1 parent 1cfd5a6 commit 571e636
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Check if tag exists
id: tag_exists
run: |
if ! git show-ref --verify --quiet "refs/tags/${{ env.tag_prefix }}${{ steps.chart_version.outputs.CHART_VERSION }}"; then
if ! git show-ref --verify --quiet "refs/tags/${{ steps.chart_version.outputs.CHART_VERSION }}"; then
TAG_EXISTS=false
else
TAG_EXISTS=true
Expand All @@ -37,11 +37,11 @@ jobs:
- name: Tag release
id: tag_version
uses: mathieudutour/github-tag-action@v6
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ steps.chart_version.outputs.CHART_VERSION }}
tag_prefix: ${{ env.tag_prefix }}
tag_prefix: ""
if: steps.tag_exists.outputs.TAG_EXISTS == 'false'

- name: Create release
Expand Down

0 comments on commit 571e636

Please sign in to comment.