.github/workflows: build the nixos manual also when doc/ changed

We import things like the nixpkgs release notes, and the css and js
files from doc/ into nixos/doc/, so building the nixos manual whenever
doc/ was modified, avoids failures reaching master.
This commit is contained in:
r-vdp 2025-02-19 11:32:17 +01:00
parent d254fd973c
commit 707565040a
No known key found for this signature in database

View File

@ -5,7 +5,11 @@ on:
branches:
- master
paths:
- 'nixos/**'
- "nixos/**"
# Also build when the nixpkgs doc changed, since we take things like
# the release notes and some css and js files from there.
# See nixos/doc/manual/default.nix
- "doc/**"
permissions: {}