mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
fix (#7273)
This commit is contained in:
parent
05d8a3c803
commit
d901b7c807
8
.github/actions/changes/action.yml
vendored
8
.github/actions/changes/action.yml
vendored
@ -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/**'
|
||||
|
3
.github/workflows/deploy+test-visual.yml
vendored
3
.github/workflows/deploy+test-visual.yml
vendored
@ -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
|
||||
|
7
.github/workflows/deploy-spaces.yml
vendored
7
.github/workflows/deploy-spaces.yml
vendored
@ -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 }} \
|
||||
|
Loading…
x
Reference in New Issue
Block a user