blob: c5955cb41ff60ca1cc554f10ee981dbfc493e85f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
image: archlinux
oauth: pages.sr.ht/PAGES:RW
packages:
- emacs
- hut
sources:
- https://git.sr.ht/~jjanzen/.dotfiles
- https://git.sr.ht/~jjanzen/blog
tasks:
- build: |
emacs --batch -f package-initialize --script ~/website/publish.el
cd ~/.dotfiles
./fix-dotfile-paths.sh
- package: |
cd ~/public_html/
tar -cvz . > ../site.tar.gz
- upload: |
hut pages publish -d jjanzen.ca site.tar.gz
hut pages publish -d www.jjanzen.ca site.tar.gz
|