From fa8fa7b0075e4df79c0b3e4d3cfe1c310f2de900 Mon Sep 17 00:00:00 2001 From: Maxime Dupras Date: Wed, 6 Jul 2022 09:36:30 -0400 Subject: [PATCH] Updated Helmfile urls to target the new repo --- .gitignore | 3 ++- README.md | 2 +- docs/overview.md | 2 +- task/src/utils.ts | 6 +++--- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index f10577d..d54ef98 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ PackageOutput node_modules task/**/*.js .taskkey -.DS_Store \ No newline at end of file +.DS_Store +.idea \ No newline at end of file diff --git a/README.md b/README.md index c3aee1b..7192e00 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/overview.md b/docs/overview.md index c3aee1b..7192e00 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -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 diff --git a/task/src/utils.ts b/task/src/utils.ts index 9bbd7eb..6ffff88 100644 --- a/task/src/utils.ts +++ b/task/src/utils.ts @@ -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");