Skip to content

Commit c1f4b98

Browse files
committed
rename jobs
1 parent 4a3e6c0 commit c1f4b98

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
maven-username: ${{ secrets.NEXUS_USERNAME }}
148148
maven-password: ${{ secrets.NEXUS_PASSWORD }}
149149

150-
build_ubuntu:
150+
build_deb:
151151
name: Build on ${{ matrix.base_image }} for ${{ matrix.target_arch }}
152152
runs-on: ${{ matrix.target_arch == 'aarch64' && 'ubuntu-latest-arm64' || 'ubuntu-latest' }}
153153
needs:
@@ -198,12 +198,12 @@ jobs:
198198
name: ${{ matrix.nexus_classifier }}-deb
199199
path: "*.deb"
200200

201-
test_ubuntu:
201+
test_deb:
202202
name: Test on ubuntu:${{ matrix.image_tag }} for ${{ matrix.target_arch }}
203203
runs-on: ${{ matrix.target_arch == 'aarch64' && 'ubuntu-latest-arm64' || 'ubuntu-latest' }}
204204
needs:
205205
- configure
206-
- build_ubuntu
206+
- build_deb
207207
strategy:
208208
matrix: ${{ fromJson(needs.configure.outputs.matrix_debs) }}
209209
fail-fast: false
@@ -249,13 +249,13 @@ jobs:
249249
- name: Install & Test Packages
250250
run: docker run --name buildtest testenv ${{ steps.variables.outputs.imagemagick_version }} ${{ env.PKG_ARCH }}
251251

252-
deploy_ubuntu:
252+
deploy_deb:
253253
name: Deploy on ubuntu:${{ matrix.image_tag }} for ${{ matrix.target_arch }}
254254
runs-on: ubuntu-latest
255255
needs:
256256
- configure
257-
- build_ubuntu
258-
- test_ubuntu
257+
- build_deb
258+
- test_deb
259259
strategy:
260260
matrix: ${{ fromJson(needs.configure.outputs.matrix_debs) }}
261261
fail-fast: false

0 commit comments

Comments
 (0)