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 285049f commit ee912feCopy full SHA for ee912fe
1 file changed
.github/workflows/container-build.yml
@@ -9,20 +9,22 @@ jobs:
9
prepare-matrix:
10
runs-on: ubuntu-22.04
11
outputs:
12
- matrix: ${{ steps.matrix.outputs.output }}
+ matrix: ${{ steps.set-matrix.outputs.matrix }}
13
steps:
14
- name: Dump GitHub context
15
env:
16
GITHUB_CONTEXT: ${{ toJson(github) }}
17
run: |
18
echo "$GITHUB_CONTEXT"
19
- uses: actions/checkout@v4
20
- - uses: fabasoad/data-format-converter-action@main
21
- id: matrix
+ - uses: fabasoad/data-format-converter-action@v1
+ id: converter
22
with:
23
- input: ".github/container-matrix.yml"
+ source-pattern: ".github/container-matrix.yml"
24
from: "yaml"
25
to: "json"
26
+ - id: set-matrix
27
+ run: echo "matrix=$(jq -c . < ${{ steps.converter.outputs.result-path }}/container-matrix.json )" >> $GITHUB_OUTPUT
28
29
build:
30
name: Build container
0 commit comments