Compare commits

..

5 commits

Author SHA1 Message Date
Bruno BELANYI 33fe7ee700 fixup! build: makefile: add deploy step
Some checks failed
continuous-integration/drone/push Build is failing
2021-08-08 17:20:55 +02:00
Bruno BELANYI e456e8977b WIP: nix: add openssh/rsync to dev shell 2021-08-08 17:15:30 +02:00
Bruno BELANYI b743fb2e68 build: makefile: change title on dev deployment 2021-08-08 17:14:47 +02:00
Bruno BELANYI c23858ac26 ci: use exec runner 2021-08-08 17:14:47 +02:00
Bruno BELANYI 4274671a23 build: makefile: add deploy step 2021-08-08 17:14:47 +02:00

View file

@ -19,7 +19,7 @@ deploy:
then echo "Missing one of SSH_USER, SSH_HOST, or SSH_TARGET" >&2; \
exit 1; \
fi
rsync --progress -avz --delete public/ "$$SSH_USER@$$SSH_HOST:$$SSH_TARGET"
rsync -e 'ssh -o StrictHostKeyChecking=no' --progress -avz --delete public/ "$$SSH_USER@$$SSH_HOST:$$SSH_TARGET"
.PHONY: clean
clean: