We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a8f3e3 commit b16b0b2Copy full SHA for b16b0b2
1 file changed
.github/workflows/release-process.yml
@@ -45,12 +45,12 @@ jobs:
45
uses: sigstore/cosign-installer@v4.0.0
46
47
- name: Run release script
48
- env:
49
- BUILDX_NO_DEFAULT_ATTESTATIONS: 1
50
run: |
51
set -e -x
52
minikube start --driver=docker --wait=all
53
- docker buildx create --name minikube --use --driver=kubernetes --bootstrap
+ # buildkit:v0.28.x has a bug that causes the build to fail, so we need to use a newer version
+ # We can remove this once v0.29.0 becomes the default.
+ docker buildx create --name minikube --use --driver=kubernetes --bootstrap --driver-opt image=moby/buildkit:v0.29.0
54
./hack/build-release.sh
55
# Create release folder to store all the output artifacts
56
mkdir release
0 commit comments