blob: 9a05a0967cb4cb1e1fd5fed75c622dedc61c330b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
image: alpine/edge
packages: [ zola ]
oauth: pages.sr.ht/PAGES:RW
environment:
site: lemon.rip
sources:
- https://git.sr.ht/~lsof/site
tasks:
- build: |
cd site
zola build
- package: |
cd site
tar -C public -cvz . > ../site.tar.gz
- upload: |
acurl -f https://pages.sr.ht/publish/$site -Fcontent=@site.tar.gz
|