Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update make target for staging release #335

Merged
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
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,12 @@ release-manifests-metrics-port:
make release-manifests RELEASE_MANIFEST_SOURCE_BASE=config/default-with-metrics-port

.PHONY: release-staging
release-staging: ## Builds and push container images and manifests to the staging bucket.
$(MAKE) docker-build
$(MAKE) docker-push
$(MAKE) release-alias-tag
release-staging: ## Builds and uploads manifests to the staging bucket and creates new tag
$(MAKE) release-templates
$(MAKE) release-manifests TAG=$(RELEASE_ALIAS_TAG)
$(MAKE) upload-staging-artifacts
git tag $(RELEASE_ALIAS_TAG)
git push upstream $(RELEASE_ALIAS_TAG)

.PHONY: release-alias-tag
release-alias-tag: # Adds the tag to the last build tag.
Expand Down
Loading