Skip to content

Commit cd78d66

Browse files
author
Zach Swanson
committed
Fix url to kubebuilder binary in workflow
1 parent 0ba76c7 commit cd78d66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
run: |
3434
os=$(go env GOOS)
3535
arch=$(go env GOARCH)
36-
curl -L https://go.kubebuilder.io/dl/2.3.1/${os}/${arch} | tar -xz -C /tmp/
36+
version=2.3.1
37+
curl -L https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${version}/kubebuilder_${version}_${os}_${arch}.tar.gz
3738
sudo mv /tmp/kubebuilder_2.3.1_${os}_${arch} /usr/local/kubebuilder
3839
- run: make test
3940

0 commit comments

Comments
 (0)