mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 14:44:18 +00:00
59 lines
1.5 KiB
Bash
Executable file
59 lines
1.5 KiB
Bash
Executable file
#!/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'
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
|
|
VERSION_FILE="$DIR/archivebox/VERSION"
|
|
|
|
function bump_semver {
|
|
echo "$1" | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g'
|
|
}
|
|
|
|
source "$DIR/.venv/bin/activate"
|
|
cd "$DIR"
|
|
|
|
OLD_VERSION="$(cat "$VERSION_FILE")"
|
|
NEW_VERSION="$(bump_semver "$OLD_VERSION")"
|
|
|
|
echo "[*] Fetching latest docs version"
|
|
cd "$DIR/docs"
|
|
git pull
|
|
cd "$DIR"
|
|
|
|
if [ -z "$(git status --porcelain)" ] && [[ "$(git branch --show-current)" == "master" ]]; then
|
|
git pull
|
|
else
|
|
echo "[X] Commit your changes and make sure git is checked out on clean master."
|
|
exit 4
|
|
fi
|
|
|
|
echo "[*] Bumping VERSION from $OLD_VERSION to $NEW_VERSION"
|
|
echo "$NEW_VERSION" > "$VERSION_FILE"
|
|
git add "$NEW_VERSION"
|
|
git commit -m "$NEW_VERSION release"
|
|
git tag -a "$NEW_VERSION"
|
|
git push origin master
|
|
git push origin --tags
|
|
|
|
echo "[*] Cleaning up build dirs"
|
|
cd "$DIR"
|
|
rm -Rf build dist
|
|
|
|
echo "[*] Building sdist and bdist_wheel"
|
|
python3 setup.py sdist bdist_wheel
|
|
|
|
echo "[^] Uploading to test.pypi.org"
|
|
python3 -m twine upload --repository testpypi dist/*
|
|
|
|
echo "[^] Uploading to pypi.org"
|
|
python3 -m twine upload --repository pypi dist/*
|
|
|
|
echo "[√] Done. Published version v$NEW_VERSION"
|