From 3458476ca49f3fdf7e3b3689a7fb7ccb30162f01 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Thu, 12 Oct 2023 22:11:57 -0500 Subject: [PATCH] Add deploy command to Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 68066f2..7b57339 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,7 @@ minecraft-site: minecraft-site.go index.html go.mod go.sum go build -tags netgo -ldflags '-extldflags "-static"' + +.PHONY: deploy +deploy: minecraft-site + rsync --rsync-path="sudo -u minecraft rsync" minecraft-site zirconium:/home/minecraft/minecraft-site + ssh zirconium sudo systemctl restart minecraft-site.service