From 066a86508463e67b2147d29347d48973ab881ee5 Mon Sep 17 00:00:00 2001 From: Zach White Date: Mon, 10 May 2021 12:42:11 -0700 Subject: [PATCH] remove the release script --- release | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/release b/release index fd972e5..d485a4c 100755 --- a/release +++ b/release @@ -3,30 +3,5 @@ # # Required packages: pip3 install bumpversion twine -set -e -set -x - -PYPI_USERNAME=${PYPI_USERNAME:=skully} -FLIT_USERNAME=$PYPI_USERNAME -TWINE_USERNAME=$PYPI_USERNAME - -export FLIT_USERNAME TWINE_USERNAME - -if ! bumpversion -h &> /dev/null; then - echo "Missing bumpversion! Please run: pip3 install -U -r requirements-dev.txt" - exit 1 -fi - -if ! twine -h &> /dev/null; then - echo "Missing twine! Please run: pip3 install -U -r requirements-dev.txt" - exit 1 -fi - -# Bump the version, tag, and push -rm -f dist/* -bumpversion patch -git push origin master --tags - -# Build and upload -python3 setup.py sdist bdist_wheel -twine upload dist/qmk-* +echo "Use the github action instead!" +exit 1