fix
This commit is contained in:
parent
33028081af
commit
d9608dcc91
1 changed files with 6 additions and 2 deletions
8
.github/workflows/build.yaml
vendored
8
.github/workflows/build.yaml
vendored
|
|
@ -32,11 +32,15 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: selfhostblocks
|
name: selfhostblocks
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
- name: Run tests
|
- name: Generate
|
||||||
id: generate-checks
|
id: generate-checks
|
||||||
run: |
|
run: |
|
||||||
|
echo dynamic_list= >> "$GITHUB_OUTPUT"
|
||||||
nix flake show --allow-import-from-derivation --json \
|
nix flake show --allow-import-from-derivation --json \
|
||||||
| jq '.["checks"]["x86_64-linux"] | keys'
|
| jq -c '.["checks"]["x86_64-linux"] | keys' \
|
||||||
|
>> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
echo "$GITHUB_OUTPUT"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue