Install latest version of helm

This commit is contained in:
Caesar2011
2026-05-18 18:48:34 +02:00
parent 20f7ef6a26
commit 2001c09fb2

View File

@@ -22,7 +22,13 @@ runs:
using: composite
steps:
- name: Install Helm
uses: azure/setup-helm@v4
shell: bash
run: |
if ! command -v helm &>/dev/null; then
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
else
echo "Helm already installed: $(helm version --short)"
fi
- name: Inject image tag into chart values
shell: bash