File tree Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 28
28
- name : Keep artifact
29
29
id : keep-artifact
30
30
run : python -c "print('DAYS=' + str(5 if '${{ github.event_name }}'.startswith('pull_request') else 0))" >> $GITHUB_OUTPUT
31
- - uses : actions/upload-artifact@v3
31
+ - uses : actions/upload-artifact@v4
32
32
with :
33
33
name : ${{ inputs.artifact-name }}
34
34
path : dist
@@ -44,10 +44,11 @@ jobs:
44
44
pkg-name : ${{ fromJSON(inputs.pkg-names) }}
45
45
steps :
46
46
- uses : actions/checkout@v4
47
- - uses : actions/download-artifact@v3
47
+ - uses : actions/download-artifact@v4
48
48
with :
49
49
name : ${{ inputs.artifact-name }}
50
50
path : pypi
51
+ merge-multiple : true
51
52
- uses : actions/setup-python@v5
52
53
with :
53
54
python-version : 3.9
63
64
mkdir pypi/${{ matrix.pkg-name }}
64
65
cp dist/* pypi/${{ matrix.pkg-name }}/
65
66
66
- - uses : actions/upload-artifact@v3
67
+ - uses : actions/upload-artifact@v4
67
68
with :
68
69
name : ${{ inputs.artifact-name }}
69
70
path : pypi
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ jobs:
104
104
python -c "print('AWS_RUN=' + str('' if '${{inputs.push_to_s3}}' == 'true' else '--dryrun'))" >> $GITHUB_ENV
105
105
106
106
- name : Upload checkpoints to GitHub Actions artifact
107
- uses : actions/upload-artifact@v3
107
+ uses : actions/upload-artifact@v4
108
108
with :
109
109
name : checkpoints-${{ github.sha }}
110
110
path : ${{ env.LEGACY_FOLDER }}/checkpoints/
Original file line number Diff line number Diff line change @@ -50,10 +50,11 @@ jobs:
50
50
- uses : actions/setup-python@v5
51
51
with :
52
52
python-version : ${{ matrix.python-version }}
53
- - uses : actions/download-artifact@v3
53
+ - uses : actions/download-artifact@v4
54
54
with :
55
55
name : dist-packages-${{ github.sha }}
56
56
path : dist
57
+ merge-multiple : true
57
58
58
59
- name : Set package dir
59
60
run : |
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129
129
run : echo "ARTIFACT_DAYS=7" >> $GITHUB_ENV
130
130
- name : Upload built docs
131
131
if : ${{ matrix.target == 'html' }}
132
- uses : actions/upload-artifact@v3
132
+ uses : actions/upload-artifact@v4
133
133
with :
134
134
name : docs-${{ matrix.pkg-name }}-${{ github.sha }}
135
135
path : docs/build/html/
@@ -158,10 +158,11 @@ jobs:
158
158
# use input if dispatch or git tag
159
159
VERSION : ${{ inputs.version || github.ref_name }}
160
160
steps :
161
- - uses : actions/download-artifact@v3
161
+ - uses : actions/download-artifact@v4
162
162
with :
163
163
name : docs-${{ matrix.pkg-name }}-${{ github.sha }}
164
164
path : docs/build/html/
165
+ merge-multiple : true
165
166
166
167
- name : Authenticate to Google Cloud
167
168
uses : google-github-actions/auth@v2
Original file line number Diff line number Diff line change @@ -38,10 +38,11 @@ jobs:
38
38
if : github.event_name == 'release'
39
39
steps :
40
40
- uses : actions/checkout@v4
41
- - uses : actions/download-artifact@v3
41
+ - uses : actions/download-artifact@v4
42
42
with :
43
43
name : dist-packages-${{ github.sha }}
44
44
path : dist
45
+ merge-multiple : true
45
46
- run : ls -lh dist/
46
47
- name : Upload to release
47
48
@@ -140,10 +141,11 @@ jobs:
140
141
name : ["FABRIC", "PYTORCH", "LIGHTNING"]
141
142
steps :
142
143
- uses : actions/checkout@v4 # needed for local action below
143
- - uses : actions/download-artifact@v3
144
+ - uses : actions/download-artifact@v4
144
145
with :
145
146
name : dist-packages-${{ github.sha }}
146
147
path : dist
148
+ merge-multiple : true
147
149
- name : Browse folder
148
150
id : folder
149
151
run : |
@@ -165,10 +167,11 @@ jobs:
165
167
name : ["FABRIC", "PYTORCH", "LIGHTNING"]
166
168
steps :
167
169
- uses : actions/checkout@v4 # needed for local action below
168
- - uses : actions/download-artifact@v3
170
+ - uses : actions/download-artifact@v4
169
171
with :
170
172
name : dist-packages-${{ github.sha }}
171
173
path : dist
174
+ merge-multiple : true
172
175
- name : Browse folder
173
176
id : folder
174
177
run : |
You can’t perform that action at this time.
0 commit comments