Skip to content

Commit

Permalink
Merge pull request #11 from qonto/fix-helm
Browse files Browse the repository at this point in the history
Fix helm chart release
  • Loading branch information
vmercierfr authored Oct 13, 2023
2 parents 312b19e + be53de1 commit b7624dc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,12 @@ jobs:
registry-type: public
mask-password: 'true'

- name: Downgrade Helm # 1.13.0 has bug that block push charts on OCI
run: |
curl -sSLo /tmp/helm.tar.gz "https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz" && \
tar --strip-components=1 -C /tmp -xzvf /tmp/helm.tar.gz linux-amd64/helm && \
mv /tmp/helm /usr/local/bin/helm && \
rm -f /tmp/helm.tar.gz
- name: Helm release
run: make helm-release

0 comments on commit b7624dc

Please sign in to comment.