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:
192192 runs-on : windows-latest
193193 needs :
194194 - build
195+ strategy :
196+ fail-fast : false
197+ matrix :
198+ gcc_v : [10,11,12]
195199
196200 steps :
197201 - uses : actions/checkout@v4
@@ -200,7 +204,7 @@ jobs:
200204 uses : actions/download-artifact@v4
201205 with :
202206 path : ${{ github.workspace }}
203- merge-multiple : true
207+ pattern : fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe
204208
205209 - name : Get version (normal)
206210 if : github.event_name != 'release'
@@ -230,7 +234,7 @@ jobs:
230234 - name : Fetch Windows executable
231235 shell : msys2 {0}
232236 run : |
233- cp fpm-*/fpm* .exe ./ci/fpm.exe
237+ cp fpm-*/fpm-*-windows-*-gcc-${{ matrix.gcc_v }} .exe ./ci/fpm.exe
234238
235239 - name : Fetch Git for Windows
236240 shell : msys2 {0}
You can’t perform that action at this time.
0 commit comments