fix: install helm via binary download, drop apt

This commit is contained in:
Sebastian Seedorf
2026-05-19 17:27:59 +02:00
parent 7d3eb6c21a
commit a2532a705d

View File

@@ -24,13 +24,9 @@ runs:
- name: Install Helm - name: Install Helm
shell: bash shell: bash
run: | run: |
curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey \ curl -fsSL https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz \
| gpg --dearmor \ | tar xz -C /tmp
| sudo tee /usr/share/keyrings/helm.gpg > /dev/null mv /tmp/linux-amd64/helm /usr/local/bin/helm
echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" \
| sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update -qq
sudo apt-get install -y helm
helm version --short helm version --short
- name: Inject image tag into chart values - name: Inject image tag into chart values