File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ jobs:
147
147
maven-username : ${{ secrets.NEXUS_USERNAME }}
148
148
maven-password : ${{ secrets.NEXUS_PASSWORD }}
149
149
150
- build_ubuntu :
150
+ build_deb :
151
151
name : Build on ${{ matrix.base_image }} for ${{ matrix.target_arch }}
152
152
runs-on : ${{ matrix.target_arch == 'aarch64' && 'ubuntu-latest-arm64' || 'ubuntu-latest' }}
153
153
needs :
@@ -198,12 +198,12 @@ jobs:
198
198
name : ${{ matrix.nexus_classifier }}-deb
199
199
path : " *.deb"
200
200
201
- test_ubuntu :
201
+ test_deb :
202
202
name : Test on ubuntu:${{ matrix.image_tag }} for ${{ matrix.target_arch }}
203
203
runs-on : ${{ matrix.target_arch == 'aarch64' && 'ubuntu-latest-arm64' || 'ubuntu-latest' }}
204
204
needs :
205
205
- configure
206
- - build_ubuntu
206
+ - build_deb
207
207
strategy :
208
208
matrix : ${{ fromJson(needs.configure.outputs.matrix_debs) }}
209
209
fail-fast : false
@@ -249,13 +249,13 @@ jobs:
249
249
- name : Install & Test Packages
250
250
run : docker run --name buildtest testenv ${{ steps.variables.outputs.imagemagick_version }} ${{ env.PKG_ARCH }}
251
251
252
- deploy_ubuntu :
252
+ deploy_deb :
253
253
name : Deploy on ubuntu:${{ matrix.image_tag }} for ${{ matrix.target_arch }}
254
254
runs-on : ubuntu-latest
255
255
needs :
256
256
- configure
257
- - build_ubuntu
258
- - test_ubuntu
257
+ - build_deb
258
+ - test_deb
259
259
strategy :
260
260
matrix : ${{ fromJson(needs.configure.outputs.matrix_debs) }}
261
261
fail-fast : false
You can’t perform that action at this time.
0 commit comments