File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,10 @@ jobs:
192
192
runs-on : windows-latest
193
193
needs :
194
194
- build
195
+ strategy :
196
+ fail-fast : false
197
+ matrix :
198
+ gcc_v : [10,11,12]
195
199
196
200
steps :
197
201
- uses : actions/checkout@v4
@@ -200,7 +204,7 @@ jobs:
200
204
uses : actions/download-artifact@v4
201
205
with :
202
206
path : ${{ github.workspace }}
203
- merge-multiple : true
207
+ pattern : fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe
204
208
205
209
- name : Get version (normal)
206
210
if : github.event_name != 'release'
@@ -230,7 +234,7 @@ jobs:
230
234
- name : Fetch Windows executable
231
235
shell : msys2 {0}
232
236
run : |
233
- cp fpm-*/fpm* .exe ./ci/fpm.exe
237
+ cp fpm-*/fpm-*-windows-*-gcc-${{ matrix.gcc_v }} .exe ./ci/fpm.exe
234
238
235
239
- name : Fetch Git for Windows
236
240
shell : msys2 {0}
You can’t perform that action at this time.
0 commit comments