.gitlab-ci.yml 309 B

12345678910111213141516171819202122
  1. image: nixos/nix
  2. before_script:
  3. - nix-channel --add https://nixos.org/channels/nixpkgs-unstable
  4. - nix-channel --update
  5. build:
  6. stage: build
  7. script: nix-shell --run make
  8. artifacts:
  9. paths:
  10. - public
  11. pages:
  12. stage: deploy
  13. script: ":"
  14. artifacts:
  15. paths:
  16. - public
  17. only:
  18. - master