Using EOF
Some checks failed
Build / Determining hosts to build (push) Successful in 7s
Build / build (push) Failing after 7s
Build / Determining hosts to build (pull_request) Successful in 8s
Build / build (pull_request) Failing after 7s

This commit is contained in:
Tibo De Peuter 2026-02-08 15:16:02 +01:00
parent 9008b6ab3d
commit 02f2ade703
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -23,7 +23,11 @@ jobs:
id: hosts
run: |
hostnames="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json)"
printf "hostnames=%q \n" "${hostnames}" >> "${GITHUB_OUTPUT}" # Preserve quotes
{
echo "hostnames<<EOF"
echo "${hostnames}"
echo EOF
} >> "${GITHUB_OUTPUT}" # Preserve quotes
build:
runs-on: ubuntu-latest