install with go install instead of go get

This commit is contained in:
Jason Hall 2021-12-20 13:47:01 -05:00
parent 789c5efa40
commit e00bbf54ce

View File

@ -22,7 +22,7 @@ runs:
case ${{ inputs.version }} in
tip)
echo "Installing ko using go get"
go get github.com/google/ko@main
go install github.com/google/ko@main
;;
latest-release)
tag=$(curl -s -u "username:${{ github.token }}" https://api.github.com/repos/google/ko/releases/latest | jq -r '.tag_name')