mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
Add initial GitLab CI configuration
This will automatically build and publish the Home Manager manual on GitLab Pages.
This commit is contained in:
parent
7a8d50a803
commit
8e05229e62
1 changed files with 14 additions and 0 deletions
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
image: nixos/nix:latest
|
||||
|
||||
pages:
|
||||
script:
|
||||
- mkdir -p ~/.config/nixpkgs
|
||||
- echo '{ manual.html.enable = true; }' > ~/.config/nixpkgs/home.nix
|
||||
- nix-shell . -A install
|
||||
- mkdir public
|
||||
- cp -r ~/.nix-profile/share/doc/home-manager/* public/
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
Loading…
Reference in a new issue