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 31
31
runs-on : ${{ matrix.runner }}
32
32
timeout-minutes : 180
33
33
steps :
34
+ - name : Download repository
35
+ uses : actions/download-artifact@v4
36
+ with :
37
+ name : repository
38
+ path : .
39
+
34
40
- name : aws-creds
35
41
uses : aws-actions/configure-aws-credentials@v4
36
42
with :
Original file line number Diff line number Diff line change 7
7
jobs :
8
8
checkout :
9
9
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 }}
10
13
steps :
11
14
- name : Checkout repository
12
15
uses : actions/checkout@v4
15
18
ref : ${{ github.event.pull_request.head.sha || github.sha }}
16
19
fetch-depth : 0
17
20
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