Skip to content

Commit

Permalink
Fixed kubectl url
Browse files Browse the repository at this point in the history
  • Loading branch information
vladyslavvolkov committed Jul 26, 2022
1 parent 7f1a7a1 commit 143d3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4026,7 +4026,7 @@ function getContainerStructureTestBinaryUrl(name) {
return "https://storage.googleapis.com/".concat(name, "/v").concat((0, core_1.getInput)("".concat(name, "-version")), "/").concat(name, "-").concat(platform, "-").concat(architecture).concat(extension);
}
function getKubernetesBinaryUrl(name) {
return "https://storage.googleapis.com/kubernetes-release/release/".concat(name, "/").concat((0, core_1.getInput)("".concat(name, "-version")), "/bin/").concat(platform, "/").concat(architecture, "/kubectl").concat(extension);
return "https://storage.googleapis.com/kubernetes-release/release/v".concat((0, core_1.getInput)("".concat(name, "-version")), "/bin/").concat(platform, "/").concat(architecture, "/").concat(name).concat(extension);
}
function resolveArgsFromAction() {
return (0, core_1.getInput)('command') === ''
Expand Down

0 comments on commit 143d3fa

Please sign in to comment.