mirror of
https://github.com/qmk/qmk_cli.git
synced 2026-07-25 16:42:55 -04:00
13 lines
217 B
Bash
Executable File
13 lines
217 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
|
|
flit publish
|