fix
This commit is contained in:
parent
70dbeaaa6f
commit
38c0953a35
1 changed files with 5 additions and 4 deletions
9
.github/workflows/build.yaml
vendored
9
.github/workflows/build.yaml
vendored
|
|
@ -35,11 +35,12 @@ jobs:
|
||||||
- name: Generate
|
- name: Generate
|
||||||
id: generate-checks
|
id: generate-checks
|
||||||
run: |
|
run: |
|
||||||
echo dynamic_list="$(nix flake show --allow-import-from-derivation --json \
|
nix flake show --allow-import-from-derivation --json \
|
||||||
| jq -c '.["checks"]["x86_64-linux"] | keys')" \
|
| jq -c '.["checks"]["x86_64-linux"] | keys' > .output
|
||||||
>> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
echo "$GITHUB_OUTPUT"
|
cat .output
|
||||||
|
|
||||||
|
echo dynamic_list="$(cat .output)" >> "$GITHUB_OUTPUT"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue