11 lines
194 B
Text
11 lines
194 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
|
||
|
ver=$(git describe --exact-match | tr -d v)
|
||
|
|
||
|
python setup.py sdist bdist_wheel
|
||
|
twine upload -s dist/larigira-${ver}*.whl
|
||
|
twine upload -s dist/larigira-${ver}*.tar.gz
|