diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-04-21 13:38:54 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-04-21 13:38:54 +0800 |
commit | b10de37fe036b3dd96384763ece9dc1478836287 (patch) | |
tree | 5be29a129f105e3beeda23748f1c026234575356 | |
parent | 46b204d1b2eb6de6eaa31deacf4dd0a9095ca3fa (diff) | |
download | gitpython-b10de37fe036b3dd96384763ece9dc1478836287.tar.gz |
Fix publishing branches
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ release: clean make force_release force_release: clean - git push --tags origin master + git push --tags origin main python3 setup.py sdist bdist_wheel twine upload -s -i 27C50E7F590947D7273A741E85194C08421980C9 dist/* @@ -24,7 +24,7 @@ docker-build: test: docker-build # NOTE!!! - # NOTE!!! If you are not running from master or have local changes then tests will fail + # NOTE!!! If you are not running from main or have local changes then tests will fail # NOTE!!! docker run --rm -v ${CURDIR}:/src -w /src -t gitpython:xenial tox |