Skip to content

Commit

Permalink
Merge pull request #5 from mdupras/mdupras/updated_helmfile_source_repo
Browse files Browse the repository at this point in the history
Updated Helmfile urls to target the new repo
  • Loading branch information
slapointe authored Jul 22, 2022
2 parents ac3fb35 + fa8fa7b commit 9230f6a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ PackageOutput
node_modules
task/**/*.js
.taskkey
.DS_Store
.DS_Store
.idea
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Helmfile installer for Azure Pipelines

This is an [Azure DevOps extension](https://marketplace.visualstudio.com/items?itemName=GSoft.HelmfileInstaller) that allows you to install the [helmfile cli tool](https://github.com/roboll/helmfile).
This is an [Azure DevOps extension](https://marketplace.visualstudio.com/items?itemName=GSoft.HelmfileInstaller) that allows you to install the [helmfile cli tool](https://github.com/helmfile/helmfile).

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Helmfile installer for Azure Pipelines

This is an [Azure DevOps extension](https://marketplace.visualstudio.com/items?itemName=GSoft.HelmfileInstaller) that allows you to install the [helmfile cli tool](https://github.com/roboll/helmfile).
This is an [Azure DevOps extension](https://marketplace.visualstudio.com/items?itemName=GSoft.HelmfileInstaller) that allows you to install the [helmfile cli tool](https://github.com/helmfile/helmfile).

## Installation

Expand Down
6 changes: 3 additions & 3 deletions task/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ function getHelmfileDownloadURL(version: string): string {
switch (os.type()) {
case "Linux":
const architecture = getSupportedLinuxArchitecture();
return util.format("https://github.com/roboll/helmfile/releases/download/%s/helmfile_linux_%s", version, architecture);
return util.format("https://github.com/helmfile/helmfile/releases/download/%s/helmfile_linux_%s", version, architecture);

case "Darwin":
return util.format("https://github.com/roboll/helmfile/releases/download/%s/helmfile_darwin_amd64", version);
return util.format("https://github.com/helmfile/helmfile/releases/download/%s/helmfile_darwin_amd64", version);

case "Windows_NT":
return util.format("hhttps://github.com/roboll/helmfile/releases/download/%s/helmfile_windows_amd64.exe", version);
return util.format("hhttps://github.com/helmfile/helmfile/releases/download/%s/helmfile_windows_amd64.exe", version);

default:
throw Error("Unknown OS type");
Expand Down

0 comments on commit 9230f6a

Please sign in to comment.