From 09d3bbfd8f11afa454af4aa51221678cc95887f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=B8=80=E4=B9=8B?= Date: Tue, 24 Oct 2023 11:57:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=85=E7=BD=91=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/run.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/run.ts b/src/run.ts index f4c5cbb..265c0b0 100644 --- a/src/run.ts +++ b/src/run.ts @@ -112,30 +112,30 @@ export function getHelmDownloadURL(version: string): string { switch (true) { case operatingSystem == LINUX && arch == ARM64: return util.format( - 'https://get.helm.sh/helm-%s-linux-arm64.zip', + 'https://gitea.icodef.com/actions/binary-repo/raw/branch/main/helm/helm-%s-linux-arm64.zip', version ) case operatingSystem == LINUX: return util.format( - 'https://get.helm.sh/helm-%s-linux-amd64.zip', + 'https://gitea.icodef.com/actions/binary-repo/raw/branch/main/helm/helm-%s-linux-amd64.zip', version ) case operatingSystem == MAC_OS && arch == ARM64: return util.format( - 'https://get.helm.sh/helm-%s-darwin-arm64.zip', + 'https://gitea.icodef.com/actions/binary-repo/raw/branch/main/helm/helm-%s-darwin-arm64.zip', version ) case operatingSystem == MAC_OS: return util.format( - 'https://get.helm.sh/helm-%s-darwin-amd64.zip', + 'https://gitea.icodef.com/actions/binary-repo/raw/branch/main/helm/helm-%s-darwin-amd64.zip', version ) case operatingSystem == WINDOWS: default: return util.format( - 'https://get.helm.sh/helm-%s-windows-amd64.zip', + 'https://gitea.icodef.com/actions/binary-repo/raw/branch/main/helm/helm-%s-windows-amd64.zip', version ) }