-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (71 loc) · 3.31 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
SHELL:= /bin/bash
ROOT_PATH:=$(shell git rev-parse --show-toplevel)
DATE=$(shell date '+%Y-%m-%d-%H:%M:%S')
GIT_COMMIT=$(shell cd "${ROOT_PATH}" && git rev-parse --short HEAD)
GIT_DIRTY=$(shell cd "${ROOT_PATH}" && test -n "$(git status --porcelain)" && echo "+CHANGES" || true)
GIT_TAG=$(shell cd "${ROOT_PATH}" && git describe --tags --abbrev=0 2>/dev/null)
VERSION=$(subst v,,${GIT_TAG})
## Output related vars
ifdef TERM
BOLD:=$(shell tput bold)
RED:=$(shell tput setaf 1)
GREEN:=$(shell tput setaf 2)
YELLOW:=$(shell tput setaf 3)
RESET:=$(shell tput sgr0)
endif
# $(msg) bla bla bla instead of @echo bla bla bla
msg = @echo
.DEFAULT_GOAL:=help
#############################################################################
.PHONY: help
help:
@grep --no-filename -E '^[a-zA-Z_/-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
#############################################################################
#############################################################################
.PHONY: version
version: ## Building new version to git
$(msg) "$(GREEN)Building new version to git$(RESET)"
$(eval NEW_VERSION=$(shell read -p "Enter new release version (current version ${VERSION}): " enter ; echo $${enter}))
@if [ ${NEW_VERSION} ]; then\
git add .;\
git commit -a -m "meta: Create release";\
git tag v${NEW_VERSION};\
git push origin main;\
git push --tags origin main;\
else \
echo "$(RED)Git build error$(RESET)";\
fi
#############################################################################
#############################################################################
.PHONY: build
build: ## Building project
$(msg) "$(GREEN)Building project$(RESET)"
@yq -i -p=json -o=json '.commit = "${GIT_COMMIT}"' ${ROOT_PATH}/package.json
@yq -i -p=json -o=json '.version = "${VERSION}"' ${ROOT_PATH}/package.json
@bun x vite build --mode production
#############################################################################
#############################################################################
.PHONY: package
package: ## Building a docker container
$(msg) "$(GREEN)Building a docker container$(RESET)"
@cat ${ROOT_PATH}/.docker/Dockerfile > ${ROOT_PATH}/Dockerfile
@sed -i -E "s/_DATE_/${DATE}/g" ${ROOT_PATH}/Dockerfile
@sed -i -E "s/_GIT_COMMIT_/${GIT_COMMIT}/g" ${ROOT_PATH}/Dockerfile
@sed -i -E "s/_VERSION_/${VERSION}/g" ${ROOT_PATH}/Dockerfile
docker build -f ${ROOT_PATH}/Dockerfile -t ghcr.io/werbot/werbot.web:latest .
docker tag ghcr.io/werbot/werbot.web:latest ghcr.io/werbot/werbot.web:v${VERSION}
rm -rf ${ROOT_PATH}/dist
rm ${ROOT_PATH}/Dockerfile
docker image prune --filter "dangling=true" --force
#############################################################################
#############################################################################
.PHONY: push
push: ## Submitting docker to the registry
$(msg) "$(GREEN)Submitting docker to the registry$(RESET)"
docker push ghcr.io/werbot/werbot.web:latest
docker push ghcr.io/werbot/werbot.web:v${VERSION}
#############################################################################
#############################################################################
%: ## A parameter
@true
#############################################################################