diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b51a40a1ae7224da3c7be42cb24582ebfea5500a..60e841acae987d290ed28f097b346a88e76b737c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ stages: - lint - test + - deploy job_lint_flake8: stage: lint @@ -59,3 +60,14 @@ job_test_gui_windows: # - python3 --version # - DISPLAY=':10.0' python3 -m unittest test.test_main +job_deploy_pages: + stage: deploy + image: morkolai/paa-bittet-ci + script: + - echo "<html><h1>Docs will appear here</h1></html>" + artifacts: + paths: + - public + only: + - master +