mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-18 14:16:48 +00:00
9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
../gradlew build # also runs tests
|
|
|
|
rm -rf build dist || true
|
|
python -m build
|
|
python -m twine upload 'dist/*'
|