ArchiveBox/bin/release.sh

35 lines
831 B
Bash
Raw Normal View History

2020-07-28 10:11:30 +00: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 10:17:54 +00:00
2020-10-10 20:44:56 +00:00
# Run the linters and tests
# ./bin/lint.sh
# ./bin/test.sh
2020-10-10 20:44:56 +00:00
2024-10-05 09:16:17 +00:00
# # Run all the build scripts
# ./bin/build_git.sh
# ./bin/build_docs.sh
# ./bin/build_pip.sh
# ./bin/build_docker.sh
2020-07-28 10:11:30 +00:00
# Push relase to public repositories
2024-10-05 10:22:01 +00:00
# ./bin/release_docs.sh
2024-10-09 10:19:41 +00:00
./bin/release_git.sh "$@"
./bin/release_pip.sh "$@"
./bin/release_docker.sh "$@"
2020-10-10 20:44:56 +00:00
VERSION="$(grep '^version = ' "${REPO_DIR}/pyproject.toml" | awk -F'"' '{print $2}')"
echo "[√] Done. Published version v$VERSION"