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