We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc17f1a commit bdf52a0Copy full SHA for bdf52a0
.github/workflows/helm-build-push.yml
@@ -19,10 +19,17 @@ jobs:
19
with:
20
fetch-depth: 0
21
22
+ # We mark any builds on main branch as latest GH release
23
+ # so make sure we don't accidentally use a pre-release tag.
24
- name: Fail on semver pre-release chart version
25
run: yq .version deployment/helm/Chart.yaml | grep -v '[a-zA-Z-]'
26
if: ${{ github.ref_name == 'main'}}
27
28
+ # To reduce resource usage images are built only on tag.
29
+ # To build a new set of images after committing and pushing
30
+ # new changes to GitHub, use:
31
+ # git tag <tag-name>
32
+ # git push --tags
33
- name: Fail if image tags don't exist
34
run: >-
35
curl -H "Authorization: Bearer $(echo ${{ secrets.GITHUB_TOKEN }} | base64)"
0 commit comments