about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-08-15 15:22:47 -0700
committerFranck Cuny <franck@fcuny.net>2021-08-15 15:22:47 -0700
commit88062d392762c3539bbe4cc8ad02e86d0d78e291 (patch)
treef223b4750001cb2ef6a5dad2e17cb127101f0e8b
parentblog: working with go - initial content (diff)
downloadworld-88062d392762c3539bbe4cc8ad02e86d0d78e291.tar.gz
build: tag the repo after a deploy
If the deployment is successful, tag the repository with the version
being deployed on fly.io.

Don't deploy unless the repository is clean (this is done with the
target `worktree-clean`).
Diffstat (limited to '')
-rw-r--r--users/fcuny/notes/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/users/fcuny/notes/Makefile b/users/fcuny/notes/Makefile
index 0276958..1275e1b 100644
--- a/users/fcuny/notes/Makefile
+++ b/users/fcuny/notes/Makefile
@@ -5,16 +5,21 @@ DOCKER_IMAGE_REF := $(shell git rev-parse HEAD)
 DOCKERFILE := Dockerfile
 PROJECT_DIR := $(realpath $(CURDIR))
 
-.PHONY: server deploy docker-build docker-run
+.PHONY: server deploy docker-build docker-run worktree-clean
 
 server:
 	@echo "Running hugo server ..."
 	hugo server
 
-deploy:
+worktree-clean:
+	git diff --exit-code
+	git diff --staged --exit-code
+
+deploy: worktree-clean docker-build
 	@echo "Deploying to fly ..."
 	flyctl deploy \
 		--build-arg IMAGE_REF=$(DOCKER_IMAGE_REF)
+	git tag --message $(shell flyctl info -j |jq '.App | "\(.Name)/v\(.Version)"') $(shell flyctl info -j |jq '.App | "\(.Name)/v\(.Version)"')
 
 docker-build:
 	@echo "Building Docker image ..."