trying again (#1554)

This commit is contained in:
Abubakar Abid 2022-06-13 13:25:35 -07:00 committed by GitHub
parent ef1abe1071
commit 3a746899c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -1 +1 @@
3.0.13b102
3.0.13b103

View File

@ -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