mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-13 18:04:55 +00:00
10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
(cd .. && ./gradlew :metadata-events:mxe-schemas:build)
|
|
./scripts/ci.sh
|
|
|
|
rm -rf build dist || true
|
|
python -m build
|
|
python -m twine upload 'dist/*'
|