dev #2

Open
tdpeuter wants to merge 43 commits from dev into main
Showing only changes of commit a5ed47a478 - Show all commits

View file

@ -22,7 +22,7 @@ jobs:
- name: "Determine hosts" - name: "Determine hosts"
id: hosts id: hosts
run: | run: |
hostnames="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json | tr '\n' ', ' | sed 's/,$//')" hostnames="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json)"
printf "hostnames=%s\n" "${hostnames}" >> "${GITHUB_OUTPUT}" printf "hostnames=%s\n" "${hostnames}" >> "${GITHUB_OUTPUT}"
build: build:
@ -32,7 +32,7 @@ jobs:
needs: determine-hosts needs: determine-hosts
strategy: strategy:
matrix: matrix:
hostname: ${{ fromJSON(needs.determine-hosts.outputs.hosts) }} hostname: ${{ needs.determine-hosts.outputs.hosts }}
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5