This commit is contained in:
pngwn 2024-02-01 19:39:12 +00:00 committed by GitHub
parent 05d8a3c803
commit d901b7c807
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 9 deletions

View File

@ -53,15 +53,15 @@ runs:
github_token: ${{ inputs.token }}
- uses: actions/checkout@v4
with:
repository: ${{ steps.pr.outputs.source_repo }}
ref: ${{ steps.pr.outputs.source_branch }}
repository: ${{ github.repository }}
ref: ${{ steps.pr.outputs.sha }}
fetch-depth: 0
token: ${{ inputs.token }}
- uses: dorny/paths-filter@v2
id: changes
with:
ref: ${{ steps.pr.outputs.source_branch }}
base: main
ref: ${{ steps.pr.outputs.sha }}
filters: |
gradio:
- 'client/python/**'

View File

@ -33,6 +33,7 @@ jobs:
with:
type: "visual"
token: ${{ secrets.GITHUB_TOKEN }}
name: "UI Tests"
- name: echo github context
if: always()
run: echo "${{ github.event.workflow_run.head_repository.full_name }}-${{ github.event.workflow_run.head_branch }}-${{ github.workflow_ref }}"
@ -49,7 +50,7 @@ jobs:
message: |
storybook~pending~null
test-visual:
name: "test / visual"
name: "test-visual"
needs: changes
if: ${{ needs.changes.outputs.should_run == 'true' && github.repository == 'gradio-app/gradio' && !contains(needs.changes.outputs.labels, 'no-visual-update') }}
runs-on: ubuntu-latest

View File

@ -1,6 +1,7 @@
name: "deploy / spaces"
on:
workflow_dispatch:
workflow_run:
workflows: ["trigger"]
types:
@ -103,7 +104,7 @@ jobs:
- name: Install Hub Client Library
run: pip install huggingface-hub
- name: Upload demo to spaces
if: github.event.workflow_run.event == 'pull_request' || github.event_name == 'pull_request'
if: github.event.workflow_run.event == 'pull_request'
id: upload-demo
run: |
python scripts/upload_demo_to_space.py all_demos \
@ -112,9 +113,7 @@ jobs:
--gradio-version ${{ steps.get_gradio_version.outputs.GRADIO_VERSION }} > url.txt
echo "SPACE_URL=$(cat url.txt)" >> $GITHUB_OUTPUT
- name: Upload Website Demos
if: >
github.event == 'workflow_dispatch' &&
github.event.workflow_run.conclusion == 'success'
if: github.event_name == 'workflow_dispatch'
id: upload-website-demos
run: |
python scripts/upload_website_demos.py --AUTH_TOKEN ${{ secrets.WEBSITE_SPACES_DEPLOY_TOKEN }} \