From 76f1a5d9921529a71cdbf061bd3f7df23144c695 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 16 Feb 2024 13:12:56 +0000 Subject: [PATCH] #11 Removed : from pipeline as it caused failure --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e84e2ed..2e56df1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,12 +3,12 @@ variables: ENVIRON: "test" FILESTORE: "static/assets/img/products/" -pytest: - stage: test - script: - - cd /builds/u5500327/wmgzon - - pip install -r requirements.txt - - pytest +# pytest: +# stage: test +# script: +# - cd /builds/u5500327/wmgzon +# - pip install -r requirements.txt +# - pytest deploy: variables: @@ -19,7 +19,7 @@ deploy: services: - docker:dind script: - - docker build -t $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA . + - docker build -t $CI_REGISTRY_IMAGE$CI_COMMIT_SHORT_SHA . - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA - docker tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA $CI_REGISTRY_IMAGE:latest