diff options
author | Melody Horn <melody@boringcactus.com> | 2020-11-17 16:36:32 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-11-17 16:36:32 -0700 |
commit | 31e6e2d3b79824875c90ba4606060441e141bc8a (patch) | |
tree | 6a486c1755a4a73d92ee68c6cfceeaa7a818525a | |
parent | 4e7085e82e7aa48b8bc404fd7926b673fc425cdf (diff) | |
download | boringcactus.com-31e6e2d3b79824875c90ba4606060441e141bc8a.tar.gz boringcactus.com-31e6e2d3b79824875c90ba4606060441e141bc8a.zip |
fix deployment
-rw-r--r-- | .build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ image: alpine/latest packages: - - python3-pip + - py3-pip - rsync sources: - https://git.sr.ht/~boringcactus/boringcactus.com @@ -18,5 +18,5 @@ tasks: python3 ../cactus-ssg/build.py - deploy: | cd boringcactus.com - rsync -rP _site/html/ $deploy:/var/www/html/www.boringcactus.com/ - rsync -rP _site/gmi/ $deploy:/var/gemini/gmi/boringcactus.com/ + rsync --rsh="ssh -o StrictHostKeyChecking=no" -rlt8hP --del _site/html/ $deploy:/var/www/html/www.boringcactus.com/ + rsync --rsh="ssh -o StrictHostKeyChecking=no" -rlt8hP --del _site/gmi/ $deploy:/var/gemini/gmi/boringcactus.com/ |