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.
builds
1 parent 0322376 commit b147e6aCopy full SHA for b147e6a
.github/workflows/check.yml
@@ -27,7 +27,10 @@ jobs:
27
id: set-matrix
28
run: |
29
set -Eeu
30
- matrix="$(nix eval --json .#githubActions.matrix)"
+ matrix=$(
31
+ nix eval --json .#githubActions.matrix \
32
+ --apply 'map (m: m // { builds = builtins.toJSON m.builds; })'
33
+ )
34
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
35
36
build:
@@ -40,4 +43,4 @@ jobs:
40
43
secrets: inherit
41
44
with:
42
45
name: ${{ matrix.name }}
- builds: ${{ toJSON(matrix.builds) }}
46
+ builds: ${{ matrix.builds }}
0 commit comments