.github/workflows/manual-{nixos,nixpkgs}.yml: fix restrict eval

needs an explicit NIX_PATH

zowoq 376b48b6 7ce2c5a5

+2 -2
+1 -1
.github/workflows/manual-nixos.yml
··· 25 25 name: nixpkgs-ci 26 26 signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 27 27 - name: Building NixOS manual 28 - run: nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux 28 + run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux
+1 -1
.github/workflows/manual-nixpkgs.yml
··· 25 25 name: nixpkgs-ci 26 26 signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 27 27 - name: Building Nixpkgs manual 28 - run: nix-build --option restrict-eval true pkgs/top-level/release.nix -A manual 28 + run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true pkgs/top-level/release.nix -A manual