poethepoet: 0.24.1 -> 0.24.2
[NixPkgs.git] / .github / workflows / manual-nixos.yml
blob6be47caf278d9caea007e70b9fb1b295b2f5f53b
1 name: "Build NixOS manual"
3 permissions: read-all
5 on:
6   pull_request_target:
7     branches:
8       - master
9     paths:
10       - 'nixos/**'
12 jobs:
13   nixos:
14     runs-on: ubuntu-latest
15     if: github.repository_owner == 'NixOS'
16     steps:
17       - uses: actions/checkout@v4
18         with:
19           # pull_request_target checks out the base branch by default
20           ref: refs/pull/${{ github.event.pull_request.number }}/merge
21       - uses: cachix/install-nix-action@v23
22         with:
23           # explicitly enable sandbox
24           extra_nix_config: sandbox = true
25       - uses: cachix/cachix-action@v12
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