diff --git a/Makefile b/Makefile index 2e6cafb4c2..d8f957d0e7 100644 --- a/Makefile +++ b/Makefile @@ -527,7 +527,8 @@ mdlint: .PHONY: verify-iso verify-iso: # Make sure the current ISO exists in the expected bucket - gsutil stat gs://$(ISO_BUCKET)/minikube-$(ISO_VERSION).iso + gsutil stat gs://$(ISO_BUCKET)/minikube-$(ISO_VERSION)-amd64.iso + gsutil stat gs://$(ISO_BUCKET)/minikube-$(ISO_VERSION)-arm64.iso out/docs/minikube.md: $(shell find "cmd") $(shell find "pkg/minikube/constants") go run -ldflags="$(MINIKUBE_LDFLAGS)" -tags gendocs hack/help_text/gen_help_text.go diff --git a/hack/jenkins/release_github_page.sh b/hack/jenkins/release_github_page.sh index 932c9134d0..c4ddbbaf82 100755 --- a/hack/jenkins/release_github_page.sh +++ b/hack/jenkins/release_github_page.sh @@ -21,7 +21,8 @@ # VERSION_MAJOR: The major version of the tag to be released. # VERSION_MINOR: The minor version of the tag to be released. # VERSION_BUILD: The build version of the tag to be released. -# ISO_SHA256: The sha 256 of the minikube-iso for the current release. +# ISO_SHA256_AMD64: The sha 256 of the amd64 minikube-iso for the current release. +# ISO_SHA256_ARM64: The sha 256 of the arm64 minikube-iso for the current release. # GITHUB_TOKEN: The GitHub API access token. Injected by the Jenkins credential provider. set -eux -o pipefail @@ -62,7 +63,8 @@ See [Getting Started](https://minikube.sigs.k8s.io/docs/start/) ## ISO Checksum -\`${ISO_SHA256}\`" +amd64: \`${ISO_SHA256_AMD64}\` +arm64: \`${ISO_SHA256_ARM64}\`" # ================================================================================ # Deleting release from github before creating new one