Add script for routines

This commit is contained in:
Paul Nameless 2021-04-21 19:58:02 +03:00
parent 617badc1de
commit cc8a7d0b3a

52
make Executable file
View file

@ -0,0 +1,52 @@
#!/bin/bash
set -e
SRC=$(dirname $0)
cd $SRC
ARG=${1:-""}
case $ARG in
build)
python3 -m pip install --upgrade setuptools wheel
python3 setup.py sdist bdist_wheel
python3 -m pip install --upgrade twine
python3 -m twine upload --repository testpypi dist/*
;;
review)
gh pr create -f
;;
release)
# CURRENT_VERSION=$(cat tg/__init__.py | grep version | cut -d '"' -f 2)
CURRENT_VERSION=$(python3 -c 'import tg; print(tg.__version__, end="")')
echo Current version $CURRENT_VERSION
NEW_VERSION=$(echo $CURRENT_VERSION | awk -F. '{print $1 "." $2+1 "." $3}')
echo New version $NEW_VERSION
sed -i '' 's/0\.8\.0/0\.9\.0/g' tg/__init__.py
git add -u tg/__init__.py
git commit -m "Release $NEW_VERSION"
git tag $NEW_VERSION
flit publish
git log --pretty=format:"%cn: %s" $CURRENT_VERSION...$NEW_VERSION | grep -v -e "Merge" | grep -v "Release"| awk '!x[$0]++' > changelog.md
git push origin master --tags
gh release create $NEW_VERSION -F changelog.md
;;
check)
black .
isort tg/*.py
sh check.sh
;;
*)
python3 -m tg
;;
esac