fix json elements
Some checks failed
Test / tests (push) Has been skipped
Build / Determining hosts to build (pull_request) Successful in 8s
Test / tests (pull_request) Has been skipped
Build / build (pull_request) Failing after 6s

This commit is contained in:
Tibo De Peuter 2026-02-08 12:06:26 +01:00
parent bfbe4204e7
commit cef1259f8d
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -20,7 +20,7 @@ jobs:
hosts="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json)" hosts="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json)"
echo "hostnames=${hosts}" >> "$GITHUB_OUTPUT" echo "hostnames=${hosts}" >> "$GITHUB_OUTPUT"
outputs: outputs:
hosts: ${{ steps.hosts.outputs }} hosts: ${{ steps.hosts.outputs.hostnames }}
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -29,7 +29,7 @@ jobs:
needs: determine_hosts needs: determine_hosts
strategy: strategy:
matrix: matrix:
hostname: ${{ fromJSON(needs.determine_hosts.outputs.hosts.hostnames) }} hostname: ${{ fromJSON(needs.determine_hosts.outputs.hosts) }}
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5