Skip to content

Commit 909b7c7

Browse files
committed
Clarify pre-check goals
1 parent f887b6a commit 909b7c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/helm-build-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121

22-
- name: Fail on semver pre-release chart version
22+
- name: Fail if publishing pre-release on main branch
2323
run: yq .version deployment/helm/Chart.yaml | grep -v '[a-zA-Z-]'
2424
if: ${{ github.ref_name == 'main'}}
2525

26-
- name: Fail on stable semver release chart version
26+
- name: Fail if publishing stable release on dev branch
2727
run: yq .version deployment/helm/Chart.yaml | grep '[a-zA-Z-]'
2828
if: ${{ github.ref_name != 'main'}}
2929

30-
- name: Fail if image tags don't exist
30+
- name: Fail if required images haven't been built
3131
run: >-
3232
curl -H "Authorization: Bearer $(echo ${{ secrets.GITHUB_TOKEN }} | base64)"
3333
https://ghcr.io/v2/stackhpc/danswer/danswer-backend/tags/list

0 commit comments

Comments
 (0)