We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 211c9b2 commit 960acb2Copy full SHA for 960acb2
.github/workflows/validate.yml
@@ -17,15 +17,15 @@ jobs:
17
prepare:
18
runs-on: ubuntu-latest
19
outputs:
20
- targets: ${{ steps.generate.outputs.targets }}
+ matrix: ${{ steps.generate.outputs.matrix }}
21
steps:
22
-
23
name: Checkout
24
uses: actions/checkout@v6
25
26
- name: List targets
+ name: Generate matrix
27
id: generate
28
- uses: docker/bake-action/subaction/list-targets@v7
+ uses: docker/bake-action/subaction/matrix@v7
29
with:
30
target: validate
31
@@ -36,7 +36,7 @@ jobs:
36
strategy:
37
fail-fast: false
38
matrix:
39
- target: ${{ fromJson(needs.prepare.outputs.targets) }}
+ include: ${{ fromJson(needs.prepare.outputs.matrix) }}
40
41
42
name: Validate
0 commit comments