From eaa06ceaee44b008aef751312bf8f8441031a3ac Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Fri, 21 Mar 2025 23:53:55 +0530 Subject: [PATCH] workflows/build-nixos-manual: run it on aarch64-linux too Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com> --- .github/workflows/manual-nixos-v2.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual-nixos-v2.yml b/.github/workflows/manual-nixos-v2.yml index 1f0321538817..297aecb8ceb5 100644 --- a/.github/workflows/manual-nixos-v2.yml +++ b/.github/workflows/manual-nixos-v2.yml @@ -34,7 +34,10 @@ jobs: with: # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. name: nixpkgs-ci - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" - name: Building NixOS manual - run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux + run: | + export NIX_PATH=nixpkgs=$(pwd) + nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux -o result-x86_64-linux + nix-build --option restrict-eval true nixos/release.nix -A manual.aarch64-linux -o result-aarch64-linux