We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335355f commit 00ed942Copy full SHA for 00ed942
.github/workflows/ci.yml
@@ -9,20 +9,24 @@ on:
9
10
jobs:
11
meta:
12
+ name: Determine image permatags
13
uses: ./.github/workflows/meta.yml
14
15
build:
16
+ name: Build the image
17
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
18
uses: ./.github/workflows/build.yml
19
20
test:
21
+ name: Test built image
22
23
needs: build
24
uses: ./.github/workflows/test.yml
25
with:
26
image: ${{ needs.build.outputs.image }}
27
28
tag:
29
+ name: Tag/push tested image
30
needs: [build, test, meta]
31
uses: ./.github/workflows/tag.yml
32
0 commit comments