From 202b9053cb2c6bb097609a0643a3159fe0a435d3 Mon Sep 17 00:00:00 2001 From: Jake Watkins Date: Sun, 17 Dec 2023 18:16:22 -0500 Subject: [PATCH] Install helm3 in code-build --- ci/install_deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/install_deps.sh b/ci/install_deps.sh index a603845..db42956 100644 --- a/ci/install_deps.sh +++ b/ci/install_deps.sh @@ -2,6 +2,7 @@ export RUSTUP_HOME=/usr/local/rustup export CARGO_HOME=/usr/local/cargo export PATH=/usr/local/cargo/bin:$PATH export RUST_VERSION=1.60.0 +export DESIRED_VERSION="v3.5.4" set -eux dpkgArch="$(dpkg --print-architecture)" @@ -25,4 +26,4 @@ rustc --version rustup target add x86_64-unknown-linux-gnu HELM_INSTALL_DIR=/bin -curl https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash +curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash