Skip to content

Commit ace48d7

Browse files
authored
Merge pull request #4 from imjasonh/fix-mv
fix curl modes to point to new repo
2 parents 78eea08 + 1e5639e commit ace48d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
go install github.com/google/ko@main
2626
;;
2727
latest-release)
28-
tag=$(curl -s -u "username:${{ github.token }}" https://api.github.com/repos/google/ko/releases/latest | jq -r '.tag_name')
28+
tag=$(curl -L -s -u "username:${{ github.token }}" https://api.github.com/repos/ko-build/ko/releases/latest | jq -r '.tag_name')
2929
;;
3030
*)
3131
tag="${{ inputs.version }}"
@@ -38,7 +38,7 @@ runs:
3838
3939
if [[ ! -z ${tag} ]]; then
4040
echo "Installing ko @ ${tag} for ${os}"
41-
curl -fsL https://github.com/google/ko/releases/download/${tag}/ko_${tag:1}_${os}_x86_64.tar.gz | sudo tar xzf - -C /usr/local/bin ko
41+
curl -fsL https://github.com/ko-build/ko/releases/download/${tag}/ko_${tag:1}_${os}_x86_64.tar.gz | sudo tar xzf - -C /usr/local/bin ko
4242
fi
4343
4444
if [[ ! -z ${KO_DOCKER_REPO} ]]; then

0 commit comments

Comments
 (0)