From 15c3a082969fafafc77eff3e60ca1113137e44ae Mon Sep 17 00:00:00 2001 From: Avinal Kumar <185067@nith.ac.in> Date: Wed, 4 Nov 2020 14:50:32 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42c1f7c..fc059b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,13 @@ -image: ubuntu:latest +image: ubuntu pages: stage: deploy - tags: - - pages script: - - make gitlab + - apt update && apt -y install python3-pip + - pip3 install -r requirements.txt + - make gitlab artifacts: paths: - public + only: + - master