aboutsummaryrefslogtreecommitdiff
path: root/post.sh
blob: ca43302be75754ed99530fffd57df06bca764d77 (plain)
1
2
3
4
5
6
#!/bin/sh
./build.sh
tmpfile=$(mktemp)
tar -C public/ -cvz . > $tmpfile
curl --oauth2-bearer "$1" -Fcontent=@"$tmpfile" https://pages.sr.ht/publish/lemurianmage.srht.site
rm "$tmpfile"