summaryrefslogtreecommitdiffstats
path: root/.build.yml
blob: db6952fd91c363fe5be0c9ba1ef7e0c931c12568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image: archlinux
sources:
    - https://git.sr.ht:~yulqen/yulqen.org
packages:
    - rsync
    - hugo
environment:
    deploy: lemon@joannalemon.com
secrets:
    - ff8a0fab-2c22-4afd-9955-ddf4090288d5
tasks:
    - build: |
        cd yulqen.org
        hugo
    - deploy: |
        cd yulqen.org
        sshopts="ssh -o StrictHostKeyChecking=no -p 2222"
        rsync  -azr --rsh="$sshopts" public/ $deploy:/var/www/yulqen.org/ --exclude '*.xcf' --exclude Makefile --exclude .git --exclude .htaccess --delete