mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
trying again (#1554)
This commit is contained in:
parent
ef1abe1071
commit
3a746899c8
4
.github/workflows/deploy-pypi.yml
vendored
4
.github/workflows/deploy-pypi.yml
vendored
@ -36,6 +36,10 @@ jobs:
|
||||
version: 6.32.11
|
||||
- name: Install pip
|
||||
run: python -m pip install pip wheel
|
||||
- name: Configure AWS
|
||||
run: |
|
||||
export AWS_ACCESS_KEY_ID=${{ secrets.AWSACCESSKEYID }}
|
||||
export AWS_SECRET_ACCESS_KEY=${{ secrets.AWSSECRETKEY }}
|
||||
- name: Build pypi package
|
||||
run: scripts/gh_action_pypi.sh
|
||||
- name: Publish package
|
||||
|
@ -1 +1 @@
|
||||
3.0.13b102
|
||||
3.0.13b103
|
||||
|
@ -4,6 +4,7 @@ if [ -z "$(ls | grep CONTRIBUTING.md)" ]; then
|
||||
exit -1
|
||||
else
|
||||
set -e
|
||||
aws configure list
|
||||
old_version=$(grep -Po "(?<=version=\")[^\"]+(?=\")" setup.py)
|
||||
read -r new_version < gradio/version.txt
|
||||
sed -i "s/version=\"$old_version\"/version=\"$new_version\"/g" setup.py
|
||||
@ -16,7 +17,6 @@ else
|
||||
GRADIO_VERSION=$new_version pnpm build:cdn
|
||||
cd ..
|
||||
echo "Before AWS"
|
||||
aws configure list
|
||||
aws s3 cp gradio/templates/cdn s3://gradio/$new_version/ --recursive
|
||||
echo "After AWS"
|
||||
cp gradio/templates/cdn/index.html gradio/templates/frontend/share.html
|
||||
|
Loading…
x
Reference in New Issue
Block a user