Skip to content

Commit

Permalink
Add doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sd109 committed Sep 4, 2024
1 parent bc17f1a commit bdf52a0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/helm-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,17 @@ jobs:
with:
fetch-depth: 0

# We mark any builds on main branch as latest GH release
# so make sure we don't accidentally use a pre-release tag.
- name: Fail on semver pre-release chart version
run: yq .version deployment/helm/Chart.yaml | grep -v '[a-zA-Z-]'
if: ${{ github.ref_name == 'main'}}

# To reduce resource usage images are built only on tag.
# To build a new set of images after committing and pushing
# new changes to GitHub, use:
# git tag <tag-name>
# git push --tags
- name: Fail if image tags don't exist
run: >-
curl -H "Authorization: Bearer $(echo ${{ secrets.GITHUB_TOKEN }} | base64)"
Expand Down

0 comments on commit bdf52a0

Please sign in to comment.