File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -527,7 +527,8 @@ mdlint:
527
527
528
528
.PHONY : verify-iso
529
529
verify-iso : # Make sure the current ISO exists in the expected bucket
530
- gsutil stat gs://$(ISO_BUCKET ) /minikube-$(ISO_VERSION ) .iso
530
+ gsutil stat gs://$(ISO_BUCKET ) /minikube-$(ISO_VERSION ) -amd64.iso
531
+ gsutil stat gs://$(ISO_BUCKET ) /minikube-$(ISO_VERSION ) -arm64.iso
531
532
532
533
out/docs/minikube.md : $(shell find "cmd") $(shell find "pkg/minikube/constants")
533
534
go run -ldflags=" $( MINIKUBE_LDFLAGS) " -tags gendocs hack/help_text/gen_help_text.go
Original file line number Diff line number Diff line change 21
21
# VERSION_MAJOR: The major version of the tag to be released.
22
22
# VERSION_MINOR: The minor version of the tag to be released.
23
23
# VERSION_BUILD: The build version of the tag to be released.
24
- # ISO_SHA256: The sha 256 of the minikube-iso for the current release.
24
+ # ISO_SHA256_AMD64: The sha 256 of the amd64 minikube-iso for the current release.
25
+ # ISO_SHA256_ARM64: The sha 256 of the arm64 minikube-iso for the current release.
25
26
# GITHUB_TOKEN: The GitHub API access token. Injected by the Jenkins credential provider.
26
27
27
28
set -eux -o pipefail
@@ -62,7 +63,8 @@ See [Getting Started](https://minikube.sigs.k8s.io/docs/start/)
62
63
63
64
## ISO Checksum
64
65
65
- \` ${ISO_SHA256} \` "
66
+ amd64: \` ${ISO_SHA256_AMD64} \`
67
+ arm64: \` ${ISO_SHA256_ARM64} \` "
66
68
67
69
# ================================================================================
68
70
# Deleting release from github before creating new one
You can’t perform that action at this time.
0 commit comments