Skip to content

Commit

Permalink
install with go install instead of go get
Browse files Browse the repository at this point in the history
  • Loading branch information
imjasonh committed Dec 20, 2021
1 parent 789c5ef commit e00bbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit e00bbf5

Please sign in to comment.