Skip to content

Commit

Permalink
New Makefile command for tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
davesavic committed Jan 7, 2024
1 parent 5fdfa86 commit 40839e0
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,40 @@
#Makefile
# Get the latest git tag
CURRENT_VERSION=$(shell git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")

# Extract major, minor, and patch numbers
MAJOR=$(shell echo $(CURRENT_VERSION) | cut -d. -f1 | tr -d v)
MINOR=$(shell echo $(CURRENT_VERSION) | cut -d. -f2)
PATCH=$(shell echo $(CURRENT_VERSION) | cut -d. -f3)

# Test
test:
go test -v -failfast -count=1 -cover -covermode=count -coverprofile=coverage.out ./...
go tool cover -func coverage.out

.phony: test

current-version:
@echo $(CURRENT_VERSION)

.PHONY: current-version

release:
@if [ "$(type)" = "major" ]; then \
NEW_MAJOR=$$(( $(MAJOR) + 1 )); \
NEW_VERSION="v$$NEW_MAJOR.0.0"; \
elif [ "$(type)" = "minor" ]; then \
NEW_MINOR=$$(( $(MINOR) + 1 )); \
NEW_VERSION="v$(MAJOR).$$NEW_MINOR.0"; \
elif [ "$(type)" = "patch" ]; then \
NEW_PATCH=$$(( $(PATCH) + 1 )); \
NEW_VERSION="v$(MAJOR).$(MINOR).$$NEW_PATCH"; \
else \
echo "Invalid release type. Use major, minor, or patch."; \
exit 1; \
fi; \
trap 'echo "Error encountered, cleaning up tags..."; git tag -d $$NEW_VERSION; git push origin :refs/tags/$$NEW_VERSION;' ERR; \
git tag -a $$NEW_VERSION -m "$(message)"; \
git push origin $$NEW_VERSION; \
trap - ERR;

.PHONY: release

0 comments on commit 40839e0

Please sign in to comment.