We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e840bf commit f4bd39aCopy full SHA for f4bd39a
1 file changed
src/index.js
@@ -7661,10 +7661,8 @@ PERFORMANCE OF THIS SOFTWARE.
7661
helmUrl = "https://get.helm.sh/helm-v"
7662
.concat(helmVersion, "-")
7663
.concat(platform, "-amd64.tar.gz");
7664
- helmfileUrl =
7665
- "https://github.com/helmfile/helmfile/releases/download/v"
7666
- .concat(helmfileVersion, "/helmfile_")
7667
- .concat(platform, "_amd64.tar.gz");
+ // https://github.com/helmfile/helmfile/releases/download/v0.152.0/helmfile_0.152.0_linux_amd64.tar.gz
+ helmfileUrl = `https://github.com/helmfile/helmfile/releases/download/v${helmfileVersion}/helmfile_${helmfileVersion}_${platform}_amd64.tar.gz`
7668
repositoryConfigPath = (0, path_1.join)(
7669
workspaceDir,
7670
repositoryConfig
0 commit comments