Skip to content
Snippets Groups Projects
Commit c90a2c1c authored by Gabriel Preuß's avatar Gabriel Preuß
Browse files

remove jupyter books pipeline

parent 5f40b8e5
Branches main
No related tags found
4 merge requests!14Value point update,!13new pipeline,!10Transfer SPARQL content,!9Docusaurus based documentation
Pipeline #431203 passed
......@@ -2,13 +2,14 @@
/node_modules
# Production
/docs/_build
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.idea
.DS_Store
.env.local
.env.development.local
......
......@@ -6,26 +6,23 @@ stages:
docs-build:
stage: build
image: python:3.10
image: node:20
script:
- pip install -U jupyter-book
- jupyter-book clean docs
- jupyter-book toc from-project docs > docs/_toc.yml
- jupyter-book build docs
- npm install
- npm run build
artifacts:
paths:
- docs/_build/
- build
pages:
stage: deploy
image: busybox:latest
needs: [docs-build]
script:
- ls
- mv docs/_build/html public
- mv build public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == "main"
- if: '$CI_COMMIT_TAG =~ /^\d+\.\d+(\.\d+)?(-pl\d+){0,1}$/'
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