build all hosts at once

This commit is contained in:
Daylin Morgan 2024-07-10 12:56:37 -05:00
parent 10d1800f04
commit b01dfd1da0
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -52,14 +52,12 @@ jobs:
- name: Build
run: |
for host in ${{ inputs.hosts }}; do
nix run . \
-- \
build --minimal \
--host "$host" \
--host "${{ inputs.hosts }}" \
--flake . \
--verbose \
--debug \
-- \
--print-build-logs
done