From 81abf3982dd31bbf8bece1296c85cb2fa0b61693 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Tue, 22 Oct 2024 19:45:05 +0200 Subject: [PATCH] workflows: fix build-nix logging (#27) Adds -L flags, this should improve the action logs usability --- .github/workflows/build_nix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_nix.yml b/.github/workflows/build_nix.yml index cf54fae..6c519d3 100644 --- a/.github/workflows/build_nix.yml +++ b/.github/workflows/build_nix.yml @@ -7,5 +7,5 @@ jobs: runs-on: self-hosted steps: - uses: actions/checkout@v4 - - run: nix build - - run: nix flake check + - run: nix build -L + - run: nix flake check -L --all-systems