15 lines
175 B
Bash
Executable file
15 lines
175 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
main() {
|
|
tox
|
|
|
|
git add -A
|
|
git commit -s
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
./scripts/pypi.sh
|
|
}
|
|
|
|
main "$@"
|