Skip to content
Snippets Groups Projects
Commit 08d532a8 authored by Ann-Kathrin Margarete Edrich's avatar Ann-Kathrin Margarete Edrich
Browse files

Fix yml file

parent 844df89e
No related branches found
No related tags found
No related merge requests found
Pipeline #1620069 passed
...@@ -10,17 +10,17 @@ stages: ...@@ -10,17 +10,17 @@ stages:
build-docs: build-docs:
stage: build stage: build
script: script:
- sphinx-build -b html docs/source/ docs/_build/html - sphinx-build -b html docs/source/ docs/build/html
artifacts: artifacts:
paths: paths:
- docs/_build/html - docs/build/html
only: only:
- main - main
pages: pages:
stage: deploy stage: deploy
script: script:
- mv docs/_build/html public - mv docs/build/html public
artifacts: artifacts:
paths: paths:
- public - public
...@@ -39,17 +39,17 @@ stages: ...@@ -39,17 +39,17 @@ stages:
build-docs: build-docs:
stage: build stage: build
script: script:
- sphinx-build -b html docs/source/ docs/_build/html - sphinx-build -b html docs/source/ docs/build/html
artifacts: artifacts:
paths: paths:
- docs/_build/html - docs/build/html
only: only:
- main - main
pages: pages:
stage: deploy stage: deploy
script: script:
- mv _build/html public - mv docs/build/html public
artifacts: artifacts:
paths: paths:
- public - public
......
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