mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
62306d9ed1
* Implement unified version and release mechanism for all python and javascript packages. * Update gradio/package.json Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * fix changelog * fix changelog * Update js/button/README.md * Update .github/workflows/generate-changeset.yml --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname ${0})"
|
|
|
|
python3 -m pip install build
|
|
rm -rf dist/*
|
|
rm -rf build/*
|
|
python3 -m build
|