This commit is contained in:
Thomas Dedek
2021-04-13 15:50:20 +02:00
commit 169d67d7e7
11 changed files with 9085 additions and 0 deletions

11
.ci.run Normal file
View File

@@ -0,0 +1,11 @@
#!/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
npm install --quiet
npm run --silent build
# push into archive
tar czf "$ARCHIVE/artifact.tar.gz" -C dist .