File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 3131 runs-on : ${{ matrix.runner }}
3232 timeout-minutes : 180
3333 steps :
34+ - name : Download repository
35+ uses : actions/download-artifact@v4
36+ with :
37+ name : repository
38+ path : .
39+
3440 - name : aws-creds
3541 uses : aws-actions/configure-aws-credentials@v4
3642 with :
Original file line number Diff line number Diff line change 77jobs :
88 checkout :
99 runs-on : ubuntu-latest
10+ outputs :
11+ ref : ${{ github.event.pull_request.head.sha || github.sha }}
12+ repository : ${{ github.event.pull_request.head.repo.full_name || github.repository }}
1013 steps :
1114 - name : Checkout repository
1215 uses : actions/checkout@v4
1518 ref : ${{ github.event.pull_request.head.sha || github.sha }}
1619 fetch-depth : 0
1720 fetch-tags : true
18- token : ${{ secrets.GITHUB_TOKEN }}
21+ token : ${{ secrets.GITHUB_TOKEN }}
22+
23+ - name : Upload repository
24+ uses : actions/upload-artifact@v4
25+ with :
26+ name : repository
27+ path : .
28+ retention-days : 1
You can’t perform that action at this time.
0 commit comments