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