1
Fork 0

add a release script

main
Motiejus Jakštys 2022-04-12 09:54:44 +03:00
parent e4d3ce4695
commit d9bc61848d
1 changed files with 17 additions and 0 deletions

17
scripts/release Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
set -xeuo pipefail
cd "$(git rev-parse --show-toplevel)/jakstys.lt"
rm -fr public
hugo
cd public
zopfli=$(bazel run --run_under=echo @zopfli//:zopfli)
brotli=$(bazel run --run_under=echo @brotli//:brotli)
find . \
-name '*.html' -or \
-name '*.xml' -or \
-name '*.txt' -or \
-name '*.css' -or \
-name '*.map' | parallel --bar "$zopfli {} && $brotli {}"