gradio/build_pypi.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
554 B
Bash
Raw Normal View History

#!/bin/bash
set -e
cd "$(dirname ${0})"
# You should update the version in package.json before running this script
FILE="gradio/package.json"
new_version=$(python -c "import json; f = open('$FILE', 'r'); data = json.load(f); print(data['version']); f.close();")
2023-09-19 12:06:09 +08:00
GRADIO_VERSION=$new_version
rm -rf gradio/templates/frontend
pnpm i --frozen-lockfile --ignore-scripts
GRADIO_VERSION=$new_version pnpm build
aws s3 cp gradio/templates/frontend "s3://gradio/${new_version}/" --recursive --region us-west-2
rm -rf dist/*
rm -rf build/*
2024-10-22 05:29:20 +08:00
python3 -m build -w