blob: 7e0b8ed351df80c4594ab3fc8db729efade7aa8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
image: archlinux
packages:
- emacs
- hut
sources:
- https://git.sr.ht/~jjanzen/dotfiles
tasks:
- build: |
emacs --batch --script ~/website/publish.el
- package: |
cd ~/public_html/
tar -cvz . > ../site.tar.gz
- upload: |
acurl -f https://pages.sr.ht/publish/jjanzen.ca -Fcontent=@site.tar.gz
|