Skip to content

Commit

Permalink
πŸ› fix tag version checks
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-haley authored Nov 10, 2022
1 parent 0418a3c commit 8c5bf04
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 @@ -44,15 +44,15 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ steps.chart_version.outputs.CHART_VERSION }}
if: steps.tag_exists.outputs.TAG_EXISTS == false
if: steps.tag_exists.outputs.TAG_EXISTS == 'false'

- name: Create release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
if: steps.tag_exists.outputs.TAG_EXISTS == false
if: steps.tag_exists.outputs.TAG_EXISTS == 'false'

- name: Publish Helm chart
uses: stefanprodan/helm-gh-pages@master
Expand All @@ -67,4 +67,4 @@ jobs:
index_dir: .
commit_username: traefiker
commit_email: [email protected]
if: steps.tag_exists.outputs.TAG_EXISTS == false
if: steps.tag_exists.outputs.TAG_EXISTS == 'false'

0 comments on commit 8c5bf04

Please sign in to comment.