diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-22 18:11:22 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-22 18:25:32 +0200 |
commit | 4a80e110f67f1c12c0bbc297b7cf439aa2ed3eba (patch) | |
tree | bf35bedee5f3fb53e77fb6a3e3f6e72c7ebba06f /.build.yml | |
parent | 93ad4d03b9d87d6177514de27bb94d9230da82e6 (diff) | |
download | gabrielgio.me-4a80e110f67f1c12c0bbc297b7cf439aa2ed3eba.tar.gz gabrielgio.me-4a80e110f67f1c12c0bbc297b7cf439aa2ed3eba.tar.bz2 gabrielgio.me-4a80e110f67f1c12c0bbc297b7cf439aa2ed3eba.zip |
feat: Move from gitlab to sr.ht pipeline
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..d58a4e6 --- /dev/null +++ b/.build.yml @@ -0,0 +1,21 @@ +image: alpine/latest +packages: + - rsync + - hugo + +secrets: + - 008c4f67-b864-47f8-9790-cd32f2ae8516 + +environment: + deploy: builds@gabrielgio.me + +tasks: + - build: | + cd gabrielgio.me + hugo + - deploy: | + cd gabrielgio.me + sshopts="ssh -o StrictHostKeyChecking=no" + rsync --rsh="$sshopts" -rP public/* $deploy:/var/www/gabrielgio.me/ + + |