Skip to content
Snippets Groups Projects
Commit ceab1c2b authored by gdyballa's avatar gdyballa
Browse files

update!

parent c6a252fc
No related branches found
No related tags found
No related merge requests found
Pipeline #77682 canceled
image: python:3.9
stages:
- build
- deploy
variables:
JUPYTER_ENABLE_LAB: "false"
before_script:
- apt-get update && apt-get install -y curl # Installieren von curl, falls benötigt
- pip install --upgrade pip
- pip install -r requirements.txt
build_job:
stage: build
script:
- jupyter-book build .
artifacts:
paths:
- _build/html
expire_in: 1 week
only:
- main
pages:
stage: deploy
dependencies:
- build_job
script:
- mv _build/html public
artifacts:
paths:
- public
only:
- main
tags:
- docker
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