Merge pull request #301499 from zimbatm/ci-fix-manual-cache

ci: fix the manual cache auth token

authored by Jörg Thalheim and committed by GitHub 4de2836e a8512382

+2 -2
+1 -1
.github/workflows/manual-nixos.yml
··· 26 with: 27 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 28 name: nixpkgs-ci 29 - signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 30 - name: Building NixOS manual 31 run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux
··· 26 with: 27 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 28 name: nixpkgs-ci 29 + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' 30 - name: Building NixOS manual 31 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
··· 27 with: 28 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 29 name: nixpkgs-ci 30 - signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 31 - name: Building Nixpkgs manual 32 run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true pkgs/top-level/release.nix -A manual -A manual.tests
··· 27 with: 28 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 29 name: nixpkgs-ci 30 + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' 31 - name: Building Nixpkgs manual 32 run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true pkgs/top-level/release.nix -A manual -A manual.tests