mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
This removes the automatic update of the Home Manager packaging in <https://gitlab.com/rycee/nur-expressions/>. That setup is very old and brittle, it should therefore not be used.
20 lines
344 B
YAML
20 lines
344 B
YAML
image: nixos/nix:latest
|
|
|
|
variables:
|
|
NIX_PATH: "nixpkgs=channel:nixos-unstable"
|
|
|
|
stages:
|
|
- deploy
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- nix-build -A docs.html
|
|
- mkdir public
|
|
- cp -r ./result/share/doc/home-manager/* public/
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == "master"
|
|
when: always
|