From 308fe5666b46aaedf6c811ac8d55205fc256b2ec Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Thu, 15 Feb 2024 20:26:26 +0330 Subject: [PATCH] Add Makefile --- Makefile | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7c63e89 --- /dev/null +++ b/Makefile @@ -0,0 +1,53 @@ +PROJECT_NAME := minitmpl +VERSION := $(shell cat VERSION) +BUILD_DIR := build +DIST_DIR := dist +LDFLAGS := "-w -s" + +build: + @echo "Building for this platform ..." + @mkdir -p $(BUILD_DIR) + @CGO_ENABLED=0 go build -ldflags=$(LDFLAGS) -o $(BUILD_DIR)/$(PROJECT_NAME) main.go + @echo "Build complete!" + + +.PHONY: release +release: + # Check if the git working directory is clean + @if [ -n "$$(git status --porcelain)" ]; then \ + echo "Error: The working directory is not clean. Please commit or stash your changes."; \ + exit 1; \ + fi + + VVERSION=v$(VERSION) + + # Check if the version tag already exists and does not point to HEAD + @if git rev-parse $$VVERSION >/dev/null 2>&1; then \ + if ! git describe --tags --exact-match HEAD >/dev/null 2>&1; then \ + echo "Error: Version $$VVERSION is already tagged on a different commit."; \ + exit 1; \ + fi; \ + fi + + # Tag the latest commit with the version from VERSION file if not already tagged + @if ! git describe --tags --exact-match HEAD >/dev/null 2>&1; then \ + echo "Latest commit not tagged. Tagging with version from VERSION file..."; \ + git tag -a $$VVERSION -m "Release $$VVERSION"; \ + git push origin $$VVERSION; \ + fi + + # Set GITEA_TOKEN variable and run goreleaser + @$(eval GITEA_TOKEN=$(shell pass www/behzadan.ir/git/reza/tokens/dt06-goreleaser)) + @goreleaser release + + +.PHONY: run +run: + go run main.go $(filter-out $@,$(MAKECMDGOALS)) +%: + @: + +clean: + @echo "Cleaning up..." + @rm -rf ${BUILD_DIR} + @rm -rf ${DIST_DIR}