Skip to content

Commit

Permalink
downgrade helm to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
CCOLLOT committed Dec 18, 2023
1 parent 94e3edb commit 3f5551e
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,6 +62,13 @@ 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: |
RELEASE_VERSION=$(jq -r .tag dist/metadata.json)
Expand Down

0 comments on commit 3f5551e

Please sign in to comment.