blob: 6932bf4563ce583843a758a2053e6530fb4ea5cf [file] [log] [blame] [raw]
#!/usr/bin/env bash
set -euo pipefail
cd "$(
cd -- "$(dirname "$0")/../.." >/dev/null 2>&1
pwd -P
)"
RELEASE_FILE_NAME=${GITHUB_RUN_NUMBER}
RELEASE_NAME=gh-${RELEASE_FILE_NAME}
HASH=$(git rev-parse HEAD)
# Clear the output
rm -rf out/dist
mkdir -p out/dist
echo "${HASH}" >out/dist/git_hash
echo "${RELEASE_NAME}" >out/dist/release_build
# Create any autogenerated files.
python3 ./etc/scripts/util/changelog.py
python3 ./etc/scripts/util/politic.py
# Set up and build and webpack everything
rm -rf node_modules
npm install --no-audit
npm run webpack
# Now install only the production dependencies
rm -rf node_modules
npm install --no-audit --production
# Output some magic for GH to set the branch name and release name
echo "::set-output name=branch::${GITHUB_REF#refs/heads/}"
echo "::set-output name=release_name::${RELEASE_NAME}"
# Run to make sure we haven't just made something that won't work
node -r esm -r ts-node/register ./app.js --version --dist
rm -rf out/dist-bin
mkdir -p out/dist-bin
export XZ_OPT="-1 -T 0"
tar -Jcf "out/dist-bin/${RELEASE_FILE_NAME}.tar.xz" -T gh-dist-files.txt
tar -Jcf "out/dist-bin/${RELEASE_FILE_NAME}.static.tar.xz" --transform="s,^out/dist/static/,," out/dist/static/*
echo "${HASH}" >"out/dist-bin/${RELEASE_FILE_NAME}.txt"
du -ch out/**/*