Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1060,10 +1060,10 @@ release: clean-release ## Build and push container images using the latest git t
git checkout "${RELEASE_TAG}"
# Build binaries first.
GIT_VERSION=$(RELEASE_TAG) $(MAKE) release-binaries
# Set the manifest images to the staging/production bucket and Builds the manifests to publish with a release.
$(MAKE) release-manifests-all
$(MAKE) docker-build-all
$(MAKE) docker-push-all
# Set the manifest images to the staging/production bucket and Builds the manifests to publish with a release.
$(MAKE) release-manifests-all

.PHONY: release-manifests-all
release-manifests-all: # Set the manifest images to the staging/production bucket and Builds the manifests to publish with a release.
Expand All @@ -1074,7 +1074,7 @@ release-manifests-all: # Set the manifest images to the staging/production bucke
# Set the development manifest image to the staging bucket.
$(MAKE) manifest-modification-dev REGISTRY=$(PROD_REGISTRY)
## Build the development manifests
$(MAKE) release-manifests-dev
$(MAKE) release-manifests-dev REGISTRY=$(PROD_REGISTRY)
## Clean the git artifacts modified in the release process
$(MAKE) clean-release-git

Expand Down