1
0
Fork 0
blog/build.sh
2023-11-06 14:40:11 +01:00

12 lines
485 B
Bash
Executable file

#!/usr/bin/env bash
set -ex
rm -fr public
nix shell nixpkgs#zola -c zola build
nix shell nixpkgs#nodejs_20 nixpkgs#zola -c npm install
nix shell nixpkgs#nodejs_20 nixpkgs#zola -c npm run abridge
nix shell nixpkgs#zola -c zola build
find public -type f -regextype posix-extended -regex '.*\.(htm|html|css|js|xml|xsl|txt|woff|woff2|svg|otf|eot|ttf)' -exec gzip --best -k -f {} \;
rsync -a --delete-after public/ /var/www/harald.hoyer.xyz/html/
chmod go-w -R /var/www/harald.hoyer.xyz/