diff options
author | Franck Cuny <franck@fcuny.net> | 2021-12-06 17:58:36 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-12-06 17:58:36 -0800 |
commit | 157cd573b20c6bd535c2598a7d87937d0a8edea7 (patch) | |
tree | bf294875c5c1a05a7eb1bf00da20200f6e7d1d06 | |
parent | CSS: drop custom fonts + colors (diff) | |
download | fcuny.net-157cd573b20c6bd535c2598a7d87937d0a8edea7.tar.gz |
build: push git branches / tags after deploy
After a successful deploy, push all the branches / tags to origin.
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 81174c9..5414dde 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ deploy: worktree-clean docker-build @echo "Deploying to fly ..." flyctl deploy @git tag -a --message $$(flyctl info -j |jq -r '.App | "fcuny.net/v\(.Version)"') $$(flyctl info -j |jq -r '.App | "fcuny.net/v\(.Version)"') + @git push origin --all + @git push origin --tags docker-build: @echo "Building Docker image ..." |