This commit is contained in:
Thomas Dedek
2021-02-24 10:49:43 +01:00
parent 5b86e9aee0
commit 67e2620bca
6 changed files with 94 additions and 6 deletions

14
.ci.run Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env sh
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
set -o xtrace ## set -x : Print command traces before executing command
# prepare python dependencies
pipenv install >/dev/null
# build HTML file
pipenv run ./build.py items.yml
# push into archive
tar czf "$ARCHIVE/portal.tar.gz" -C dist .