Skip to content
Snippets Groups Projects
Commit 528fb072 authored by Jan Habscheid's avatar Jan Habscheid
Browse files

Update .gitlab-ci.yml file

parent 1c4a23b9
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,8 @@ stages: # Define stages in the pipeline ...@@ -7,6 +7,8 @@ stages: # Define stages in the pipeline
# Job to build documentation # Job to build documentation
build-docs: build-docs:
stage: build stage: build
tags:
- shell
script: script:
- sphinx-build docs/source docs/build # Build the documentation - sphinx-build docs/source docs/build # Build the documentation
artifacts: artifacts:
...@@ -17,6 +19,8 @@ build-docs: ...@@ -17,6 +19,8 @@ build-docs:
# Job to deploy documentation to GitLab Pages # Job to deploy documentation to GitLab Pages
pages: pages:
stage: deploy stage: deploy
tags:
- shell
script: script:
- mv docs/build public # Move the build output to the "public" directory - mv docs/build public # Move the build output to the "public" directory
artifacts: artifacts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment