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 3 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.

.PHONY: update-manifests
update-manifests: ## Update image tags in manifests
sed -i 's/newTag: .*/newTag: $(VERSION)/' config/manager/kustomization.yaml
@echo "After update:"
@sed -n '/newTag:/p' config/manager/kustomization.yaml

.PHONY: release
release: ## Create a new release
@read -p "Enter new version (e.g., vX.Y.Z): " VERSION && \
$(MAKE) update-manifests VERSION=$$VERSION && \
git add config/ && \
git commit -m "release: $$VERSION" && \
git tag -a "$$VERSION" -m "Release $$VERSION" && \
$(MAKE) update-manifests VERSION="latest" && \
git add config/ && \
git commit -m "release: next iteration"
@echo "Done, don't forget to push. When pushing, add --tags to your call."
cam-garrison marked this conversation as resolved.
Show resolved Hide resolved

##@ Deployment

ifndef ignore-not-found
Expand Down