1
0
Fork 0
mirror of synced 2024-05-17 19:02:33 +12:00
ArchiveBox/bin/release.sh

39 lines
857 B
Bash
Raw Normal View History

2020-07-28 22:11:30 +12:00
#!/usr/bin/env bash
### Bash Environment Setup
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
# set -o xtrace
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
IFS=$'\n'
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
cd "$REPO_DIR"
2020-07-28 22:17:54 +12:00
2020-10-11 09:44:56 +13:00
# Run the linters and tests
# ./bin/lint.sh
# ./bin/test.sh
2020-10-11 09:44:56 +13:00
# Run all the build scripts
./bin/build_git.sh
2020-10-11 09:44:56 +13:00
./bin/build_docs.sh
./bin/build_pip.sh
./bin/build_deb.sh
./bin/build_brew.sh
2020-10-11 09:44:56 +13:00
./bin/build_docker.sh
2020-07-28 22:11:30 +12:00
# Push relase to public repositories
./bin/release_git.sh
./bin/release_docs.sh
./bin/release_pip.sh
./bin/release_deb.sh
./bin/release_brew.sh
./bin/release_docker.sh
2020-10-11 09:44:56 +13:00
VERSION="$(jq -r '.version' < "$REPO_DIR/package.json")"
echo "[√] Done. Published version v$VERSION"