File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -527,7 +527,8 @@ mdlint:
527527
528528.PHONY : verify-iso
529529verify-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
531532
532533out/docs/minikube.md : $(shell find "cmd") $(shell find "pkg/minikube/constants")
533534 go run -ldflags=" $( MINIKUBE_LDFLAGS) " -tags gendocs hack/help_text/gen_help_text.go
Original file line number Diff line number Diff line change 2121# VERSION_MAJOR: The major version of the tag to be released.
2222# VERSION_MINOR: The minor version of the tag to be released.
2323# 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.
2526# GITHUB_TOKEN: The GitHub API access token. Injected by the Jenkins credential provider.
2627
2728set -eux -o pipefail
@@ -62,7 +63,8 @@ See [Getting Started](https://minikube.sigs.k8s.io/docs/start/)
6263
6364## ISO Checksum
6465
65- \` ${ISO_SHA256} \` "
66+ amd64: \` ${ISO_SHA256_AMD64} \`
67+ arm64: \` ${ISO_SHA256_ARM64} \` "
6668
6769# ================================================================================
6870# Deleting release from github before creating new one
You can’t perform that action at this time.
0 commit comments