mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
c4ad09b631
* release action * fixes * name * Update version.txt * Update version.txt * update * fixes * version * rename * action * fix token * custom dir * fixes * change password * revert back to token * scripts * remove twine
10 lines
120 B
Bash
Executable File
10 lines
120 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
|