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"
id: hosts
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}"
build:
@ -32,7 +32,7 @@ jobs:
needs: determine-hosts
strategy:
matrix:
hostname: ${{ fromJSON(needs.determine-hosts.outputs.hosts) }}
hostname: ${{ needs.determine-hosts.outputs.hosts }}
steps:
- uses: actions/checkout@v5