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'
|
|
|
|
|
2020-08-18 19:00:00 +00:00
|
|
|
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
|
|
|
|
2021-01-12 10:56:00 +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
|
|
|
|
2021-01-12 10:56:00 +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
|
|
|
|
2024-10-05 10:51:47 +00:00
|
|
|
VERSION="$(grep '^version = ' "${REPO_DIR}/pyproject.toml" | awk -F'"' '{print $2}')"
|
2021-01-12 10:56:00 +00:00
|
|
|
echo "[√] Done. Published version v$VERSION"
|