-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
51 lines (41 loc) · 1.25 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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)
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
.PHONY: lint
lint:
golangci-lint run
.PHONY: fmt
fmt:
@sh ./fmt.sh
.PHONY: tidy
tidy:
@go mod tidy -v
.PHONY: check
check:
@$(MAKE) --no-print-directory fmt
@$(MAKE) --no-print-directory tidy