print less logs when building

This commit is contained in:
Danilo Reyes 2025-09-28 10:24:43 -06:00
parent f400b8922a
commit d704e0ee13

View File

@ -45,13 +45,13 @@ jobs:
if: steps.check_changes.outputs.changes == 'true' if: steps.check_changes.outputs.changes == 'true'
run: | run: |
echo "Building workstation configuration..." echo "Building workstation configuration..."
nix build .#nixosConfigurations.workstation.config.system.build.toplevel --print-build-logs nix build .#nixosConfigurations.workstation.config.system.build.toplevel
- name: Build server configuration - name: Build server configuration
if: steps.check_changes.outputs.changes == 'true' if: steps.check_changes.outputs.changes == 'true'
run: | run: |
echo "Building server configuration..." echo "Building server configuration..."
nix build .#nixosConfigurations.server.config.system.build.toplevel --print-build-logs nix build .#nixosConfigurations.server.config.system.build.toplevel
- name: Push to cache - name: Push to cache
if: steps.check_changes.outputs.changes == 'true' if: steps.check_changes.outputs.changes == 'true'