From 79acfd7792a964a0c1447c49de27ed7d2586d6fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Holene=20L=C3=B8kkeborg?= <thomahl@stud.ntnu.no> Date: Thu, 20 Feb 2020 14:23:50 +0100 Subject: [PATCH] Now building pages Only placeholder page for now --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b51a40a..60e841a 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 + -- GitLab