File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 76
76
export AWS_ACCESS_KEY_ID=${{ secrets.PYPI_PREVIEWS_AWS_S3_ACCESS_KEY }}
77
77
export AWS_SECRET_ACCESS_KEY=${{ secrets.PYPI_PREVIEWS_AWS_S3_SECRET_ACCESS_KEY }}
78
78
export AWS_DEFAULT_REGION=us-east-1
79
- aws s3 cp ${{ steps.set_wheel_name.outputs.wheel_name}}-py3-none-any.whl s3://gradio-pypi-previews/${{ needs.changes.outputs.sha }}/
79
+ aws s3 cp ${{ steps.set_wheel_name.outputs.wheel_name}} s3://gradio-pypi-previews/${{ needs.changes.outputs.sha }}/
80
80
81
81
- name : Set tarball name
82
82
id : set_tarball_name
Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-latest
23
23
outputs :
24
24
should_run : ${{ steps.changes.outputs.should_run }}
25
+ sha : ${{ steps.changes.outputs.sha }}
26
+ source_branch : ${{ steps.changes.outputs.source_branch }}
27
+ source_repo : ${{ steps.changes.outputs.source_repo }}
25
28
steps :
26
29
- uses : actions/checkout@v4
27
30
- uses : " gradio-app/gradio/.github/actions/changes@main"
36
39
if : needs.changes.outputs.should_run == 'true'
37
40
steps :
38
41
- uses : actions/checkout@v4
42
+ with :
43
+ ref : ${{ needs.changes.outputs.source_branch }}
44
+ repository : ${{ needs.changes.outputs.source_repo }}
39
45
- name : install dependencies
40
46
uses : " gradio-app/gradio/.github/actions/install-all-deps@main"
41
47
with :
You can’t perform that action at this time.
0 commit comments