Merge pull request #14166 from sharifelgamal/double-iso
fix release jobs to account for two ISOspull/14167/head v1.26.0-beta.0
commit
51ba46c311
3
Makefile
3
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue