fixup! build: makefile: add deploy step
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Bruno BELANYI 2021-08-08 16:58:18 +02:00
parent 1a2dd074cb
commit 0986c64a80

View file

@ -14,9 +14,12 @@ serve:
hugo server -D -F hugo server -D -F
deploy: deploy:
@if [ -n "$$KEY" ]; then eval "$$(ssh-agent)"; echo "$$KEY" | ssh-add -; fi @if [ -n "$$SSH_KEY" ]; then eval "$$(ssh-agent)"; echo "$$SSH_KEY" | ssh-add -; fi
if [ -z "$$USERNAME" ] || [ -z "$$SSH_HOST" ] || [ -z "$$TARGET" ]; then exit 1; fi @if [ -z "$$SSH_USER" ] || [ -z "$$SSH_HOST" ] || [ -z "$$SSH_TARGET" ]; \
rsync --progress -avz --delete public/ "$$USERNAME@$$SSH_HOST:$$TARGET" then echo "Missing one of SSH_USER, SSH_HOST, or TARGET" >&2; \
exit 1; \
fi
rsync --progress -avz --delete public/ "$$SSH_USER@$$SSH_HOST:$$TARGET"
.PHONY: clean .PHONY: clean
clean: clean: