Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI 0986c64a80 fixup! build: makefile: add deploy step
Some checks failed
continuous-integration/drone/push Build is failing
2021-08-08 16:58:18 +02:00
Bruno BELANYI 1a2dd074cb fixup! ci: use exec runner 2021-08-08 16:58:15 +02:00
2 changed files with 9 additions and 6 deletions

View file

@ -34,9 +34,9 @@ local Pipeline(isDev) = {
],
environment: {
SSH_HOST: { from_secret: "ssh_host" },
TARGET: { from_secret: "ssh_target" + if isDev then "_dev" else "" },
USERNAME: { from_secret: "ssh_user" },
KEY: { from_secret: "ssh_key" },
SSH_TARGET: { from_secret: "ssh_target" + if isDev then "_dev" else "" },
SSH_USER: { from_secret: "ssh_user" },
SSH_KEY: { from_secret: "ssh_key" },
},
},
{

View file

@ -14,9 +14,12 @@ serve:
hugo server -D -F
deploy:
@if [ -n "$$KEY" ]; then eval "$$(ssh-agent)"; echo "$$KEY" | ssh-add -; fi
if [ -z "$$USERNAME" ] || [ -z "$$SSH_HOST" ] || [ -z "$$TARGET" ]; then exit 1; fi
rsync --progress -avz --delete public/ "$$USERNAME@$$SSH_HOST:$$TARGET"
@if [ -n "$$SSH_KEY" ]; then eval "$$(ssh-agent)"; echo "$$SSH_KEY" | ssh-add -; fi
@if [ -z "$$SSH_USER" ] || [ -z "$$SSH_HOST" ] || [ -z "$$SSH_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
clean: