Skip to content

Commit 00ed942

Browse files
Add names to CI jobs
1 parent 335355f commit 00ed942

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ on:
99

1010
jobs:
1111
meta:
12+
name: Determine image permatags
1213
uses: ./.github/workflows/meta.yml
1314

1415
build:
16+
name: Build the image
1517
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
1618
uses: ./.github/workflows/build.yml
1719

1820
test:
21+
name: Test built image
1922
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
2023
needs: build
2124
uses: ./.github/workflows/test.yml
2225
with:
2326
image: ${{ needs.build.outputs.image }}
2427

2528
tag:
29+
name: Tag/push tested image
2630
needs: [build, test, meta]
2731
uses: ./.github/workflows/tag.yml
2832
with:

0 commit comments

Comments
 (0)