Fix ci cache (#7259)

* fix

* fix

* fix

* format tweaks

* add changeset

* tweaks

* tweaks

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
pngwn 2024-02-01 12:56:35 +00:00 committed by GitHub
parent 09257ef1f1
commit c37af22ffe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,6 +21,7 @@ jobs:
changes:
name: "changes"
runs-on: ubuntu-latest
continue-on-error: true
outputs:
should_run: ${{ steps.changes.outputs.should_run }}
sha: ${{ steps.changes.outputs.sha }}
@ -42,7 +43,10 @@ jobs:
run: echo "${{ github.event.workflow_run.head_repository.full_name }}-${{ github.event.workflow_run.head_branch }}-${{ github.workflow_ref }}"
- name: echo outputs
if: always()
run: echo ${{ toJson(steps.changes.outputs) }}
run: echo "${{ toJson(steps.changes.outputs) }}"
- name: echo github context as json
if: always()
run: echo "${{ toJson(github) }}"
test-python:
needs: [changes]