diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3019ff9ef4398a5e48d4b1b45cd070d6069d96d7..e0e84fc7266cf201266c9fe20069a664ce275543 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,22 +1,27 @@ image: python:3.9-slim-buster stages: - - build - - deploy + - build + - deploy before_script: - - pip install jupyter nbconvert + - pip install jupyter nbconvert build_notebooks: - stage: build - script: - - mkdir -p public - - jupyter nbconvert --to html notebooks/*.ipynb --output-dir=public - + stage: build + script: + - mkdir -p public + - jupyter nbconvert --to html notebooks/*.ipynb --output-dir=public + artifacts: + paths: + - public + pages: - stage: deploy - artifacts: - paths: - - public - only: - - master + stage: deploy + script: + - echo "Deploying Pages" + artifacts: + paths: + - public + only: + - master