File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ jobs:
183
183
- name : Upload artifact
184
184
uses : actions/upload-artifact@v4
185
185
with :
186
- name : ${{ env.FPM_RELEASE }}
186
+ name : ${{ env.FPM_RELEASE }}-${{ matrix.os-arch }}
187
187
path : ${{ env.FPM_RELEASE }}
188
188
189
189
@@ -197,9 +197,10 @@ jobs:
197
197
- uses : actions/checkout@v4
198
198
199
199
- name : Download Artifacts
200
- uses : actions/download-artifact@v2
200
+ uses : actions/download-artifact@v4
201
201
with :
202
- path : ${{ github.workspace }} # This will download all files
202
+ path : ${{ github.workspace }}
203
+ merge-multiple : true
203
204
204
205
- name : Get version (normal)
205
206
if : github.event_name != 'release'
@@ -281,9 +282,10 @@ jobs:
281
282
if : ${{ github.event_name == 'push' }}
282
283
283
284
- name : Download Artifacts
284
- uses : actions/download-artifact@v2
285
+ uses : actions/download-artifact@v4
285
286
with :
286
- path : ${{ github.workspace }} # This will download all files
287
+ path : ${{ github.workspace }}
288
+ merge-multiple : true
287
289
288
290
- name : Normalize file names for continuous delivery
289
291
if : ${{ github.event_name == 'push' }}
Original file line number Diff line number Diff line change @@ -128,9 +128,10 @@ jobs:
128
128
if : ${{ github.event_name == 'push' }}
129
129
130
130
- name : Download Artifacts
131
- uses : actions/download-artifact@v2
131
+ uses : actions/download-artifact@v4
132
132
with :
133
- path : ${{ github.workspace }} # This will download all files
133
+ path : ${{ github.workspace }}
134
+ merge-multiple : true
134
135
135
136
- name : Normalize file names for continuous delivery
136
137
if : ${{ github.event_name == 'push' }}
You can’t perform that action at this time.
0 commit comments