1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

CI: Only gzip when deploying to seirdy.one

Only seirdy.one uses gzip_static
This commit is contained in:
rohan kumar 2020-11-25 21:58:08 -08:00
parent 3474c2d5f4
commit 970fa0e057
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -22,9 +22,17 @@ case "$1" in
;;
esac
find public -type f -name '*.html' -o -name '*.css' -o -name '*.xml' -o -name '*.txt' \
| grep -v gemini \
| xargs zopfli
rsync -avzP --exclude 'gemini' --exclude '*.gmi' --exclude 'misc/' --exclude 'music.txt' --exclude '.well-known' public/ "$www_prefix/" --delete
rsync -avzP --exclude '*.html' --exclude 'misc/' --exclude 'music.txt' public/gemini/ public/about public/posts "$gemini_prefix/" --delete
# I use gzip_static with nginx
if [ "$1" = 'seirdy.one' ]; then
find public -type f -name '*.html' -o -name '*.css' -o -name '*.xml' -o -name '*.txt' \
| grep -v gemini \
| xargs zopfli
fi
rsync -avzP \
--exclude 'gemini' --exclude '*.gmi' --exclude 'misc/' --exclude 'music.txt' --exclude '.well-known' \
public/ "$www_prefix/" --delete
rsync -avzP \
--exclude '*.html' --exclude 'misc/' --exclude 'music.txt' \
public/gemini/ public/about public/posts "$gemini_prefix/" --delete
rsync -avzP public/posts/gemini.xml "$gemini_prefix/feed.xml"