crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / .github / workflows / manual-nixos.yml
blob85c7ac2d6929016502da5ef000ce630ffb2bd121
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@v3
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@v20
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 with DocBook options
31         run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux
32       - name: Building NixOS manual with Markdown options
33         run: |
34           export NIX_PATH=nixpkgs=$(pwd)
35           nix-build \
36             --option restrict-eval true \
37             --arg configuration '{ documentation.nixos.options.allowDocBook = false; }' \
38             nixos/release.nix \
39             -A manual.x86_64-linux