mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-10 03:39:38 +00:00
11 lines
No EOL
273 B
Bash
Executable file
11 lines
No EOL
273 B
Bash
Executable file
#!/bin/env bash
|
|
|
|
if [[ $SOURCEHUT_PAGES_TOKEN == "" ]]; then
|
|
echo "missing SOURCEHUT_PAGES_TOKEN variable"
|
|
exit 1
|
|
fi
|
|
|
|
curl --oauth2-bearer "$SOURCEHUT_PAGES_TOKEN" \
|
|
-Fcontent=@site.tar.gz \
|
|
-Fprotocol=GEMINI \
|
|
https://pages.sr.ht/publish/username.srht.site |