From 667409fcdc4ff122212e55e360c4ccdf79e7e659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Tzvetkov?= <> Date: Tue, 22 Oct 2024 11:22:14 +0200 Subject: [PATCH] fix: remove manpage and pages stages from template CI --- templates/top/.gitlab-ci.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/templates/top/.gitlab-ci.yml b/templates/top/.gitlab-ci.yml index bd8b5854..411f2191 100644 --- a/templates/top/.gitlab-ci.yml +++ b/templates/top/.gitlab-ci.yml @@ -18,26 +18,3 @@ test: script: - nix flake check $NIX_BUILD_FLAGS dependencies: [] - -manpage: - stage: deploy - script: - - nix build $NIX_BUILD_FLAGS '.#manpage' - - cp -Lr ./result manpage - artifacts: - name: "manpage-$CI_COMMIT_REF_SLUG" - paths: - - manpage - -pages: - stage: deploy - script: - - nix build $NIX_BUILD_FLAGS '.#mdbook' - - cp -Lr ./result public - artifacts: - name: "mdbook" - paths: - - public - dependencies: [] - rules: - - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH