10 line
194 B
Bash
Executable file
10 line
194 B
Bash
Executable file
#!/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
|