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

chore: add make release target #20

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,24 @@ image-push: ## Push container image
.PHONY: image
image: image-build image-push ## Build and push docker image with the manager.

##@ Release
define update-manifests
sed -i 's/newTag: .*/newTag: $(1)/' config/manager/kustomization.yaml
endef

.PHONY: release
release: ## Create a new release
$(call header,"Releasing version $(VERSION)")
@$(call update-manifests,$(VERSION)); \
git add config/ && \
git commit -m "release: $(VERSION)" && \
git tag -a "$(VERSION)" -m "Release $(VERSION)"; \
$(call update-manifests,latest); \
git add config/ && \
git commit -m "release: next iteration"
@echo "Done, don't forget to push. When pushing, add --tags to your call."


##@ Deployment

ifndef ignore-not-found
Expand Down