10 строки
194 Б
Bash
Исполняемый файл
10 строки
194 Б
Bash
Исполняемый файл
#!/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
|