diff --git a/helm-package-push/action.yml b/helm-package-push/action.yml index 1f29a60..3ce5d31 100644 --- a/helm-package-push/action.yml +++ b/helm-package-push/action.yml @@ -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