6 lines
168 B
Bash
6 lines
168 B
Bash
|
#!/usr/bin/sh
|
||
|
tar -C _site -cvz . > escot.tar.gz
|
||
|
curl -v --oauth2-bearer "$(cat SRHT_TOKEN)" \
|
||
|
-Fcontent=@escot.tar.gz \
|
||
|
https://pages.sr.ht/publish/lucas.escot.me
|