File: release.sh

package info (click to toggle)
python-stringcase 1.2.0~git20230617.57aae96-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: python: 185; sh: 8; makefile: 3
file content (13 lines) | stat: -rwxr-xr-x 193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

HERE=$(cd "$(dirname $0)" && pwd)
BASE_DIR=$(cd "${HERE}/.." && pwd)

cd "${BASE_DIR}"

python setup.py sdist
twine upload dist/*

git add . -A
git commit -m 'Version up'
git push