blob: 6d84f7562bef6914a1a285811a11ac5662c31dad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
image: alpine/edge
packages:
- hut
- zola
oauth: pages.sr.ht/PAGES:RW
environment:
site: zola-no-style-please.demo.gumx.cc
sources:
- https://git.sr.ht/~gumxcc/zola-no-style-please
tasks:
- build: |
cd zola-no-style-please
zola build
- package: |
tar -C zola-no-style-please/public -cvz . > site.tar.gz
- upload: |
hut pages publish -d $site site.tar.gz
|