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 ac805ba commit 86591aaCopy full SHA for 86591aa
.github/workflows/deploy-ops-dashboard.yml
@@ -53,6 +53,19 @@ jobs:
53
jq '.' env.yaml
54
working-directory: .ops/ops-dashboard
55
56
+ - name: pin helm to correct version
57
+ run: |
58
+ helm version
59
+
60
+ curl -o /tmp/helm.tar.gz -sL https://get.helm.sh/helm-v4.0.1-linux-amd64.tar.gz
61
+ echo "e0365548f01ed52a58a1181ad310b604a3244f59257425bb1739499372bdff60 /tmp/helm.tar.gz" | sha256sum --check
62
63
+ tar -xzf /tmp/helm.tar.gz -C /tmp/
64
+ mv /tmp/linux-amd64/helm /usr/local/bin/helm
65
66
+ chmod +x /usr/local/bin/helm
67
68
69
- name: Setup helm
70
run: |
71
mkdir ~/.kube && echo '${{ secrets.KUBECONFIG }}' > ~/.kube/config && chmod go-r ~/.kube/config
0 commit comments