diff options
author | Franck Cuny <franck@fcuny.net> | 2021-08-15 15:22:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-08-15 15:22:47 -0700 |
commit | 88062d392762c3539bbe4cc8ad02e86d0d78e291 (patch) | |
tree | f223b4750001cb2ef6a5dad2e17cb127101f0e8b | |
parent | blog: working with go - initial content (diff) | |
download | world-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/Makefile | 9 |
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 ..." |