forked from platypush/platypush
Fabio Manganiello
7fa0dbda7b
A fully self-contained 1.5k LoC Drone file isn't very maintainable, and it makes it hard to reuse parts that are shared across multiple steps (like SSH and git configuration).
5 lines
147 B
Bash
Executable file
5 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
|
|
apk add --update --no-cache py3-twine
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/platypush-$(python setup.py --version).tar.gz
|