From 888023554a9e4c3ce4cbdc190b88264fdd80794d Mon Sep 17 00:00:00 2001 From: Alfin Johny <alfin.johny@tum.de> Date: Thu, 2 Jan 2025 12:00:23 +0100 Subject: [PATCH] Rename stage : doxygen --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f9978d0..596710b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,11 +17,11 @@ # === Configure pipeline === # This section defines the stages of the pipeline: build and deploy stages: - - build # The 'build' stage is where documentation is generated. - - deploy # The 'deploy' stage deploys the generated documentation. + - build # The 'build' stage is where documents are copied to the PROJECT_DIR + - deploy # The 'deploy' stage generates and deploys the generated documentation. -# === Build the doxygen documentation === -doxygen: +# === Clone the repositories / copy documentation to the PROJECT_DIR === +clone: image: alpine:latest stage: build # This job is part of the build stage tags: -- GitLab