This commit is contained in:
ibizaman 2024-10-24 15:49:07 +02:00
parent 70dbeaaa6f
commit 38c0953a35

View file

@ -35,11 +35,12 @@ jobs:
- name: Generate
id: generate-checks
run: |
echo dynamic_list="$(nix flake show --allow-import-from-derivation --json \
| jq -c '.["checks"]["x86_64-linux"] | keys')" \
>> "$GITHUB_OUTPUT"
nix flake show --allow-import-from-derivation --json \
| jq -c '.["checks"]["x86_64-linux"] | keys' > .output
echo "$GITHUB_OUTPUT"
cat .output
echo dynamic_list="$(cat .output)" >> "$GITHUB_OUTPUT"
outputs:
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}