Files
qmk_cli-mirror/release
T
2019-07-15 10:45:06 -07:00

19 lines
355 B
Bash
Executable File

#!/bin/sh
# Increment the verison number and release a new version of qmk_cli.
set -e
set -x
FLIT_USERNAME=${FLIT_USERNAME:=skully}
export FLIT_USERNAME
bumpversion patch
git push origin master --tags
# For now we don't use flit
#flit publish
# Use setuptools until flit works with homebrew
python3 setup.py sdist bdist_wheel
twine upload dist/qmk-*