Skip to content

Commit

Permalink
Add dev version check to Helm publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sd109 committed Aug 30, 2024
1 parent 9fa0cf3 commit fcb01aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/helm-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
with:
fetch-depth: 0

- name: Fail on dev chart version
run: yq .version deployment/helm/Chart.yaml | grep -v "[-\w]"
if: ${{ github.ref_name == 'main'}}

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
Expand Down

0 comments on commit fcb01aa

Please sign in to comment.