diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 841fcb2018a82e7305e2ea2776d268305be4f13e..0000000000000000000000000000000000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -image: python:3.9-buster - -before_script: - - pip install -r requirements.txt - -test: - stage: test - script: - - mkdocs build --verbose --site-dir test - artifacts: - paths: - - test - except: - - master - -deploy: - stage: deploy - only: - - master - script: - - mkdocs build --site-dir public - - echo "build" - artifacts: - paths: - - public - expire_in: 10 mins - - - - - - - - - -