From 899527436fc147c19121291f7f1ca742311c7bf7 Mon Sep 17 00:00:00 2001 From: Slava Date: Wed, 29 May 2024 17:12:12 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ba73d71..10faf08 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,7 @@ stages: - 'test' - - 'code_quality' - 'build' - - 'deploy' - 'push' pytest: @@ -39,7 +37,7 @@ make_image: stage: build image: docker:26.1.3-dind services: - - dind + - docker:26.1.3-dind before_script: - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY @@ -69,9 +67,6 @@ Push latest: # We do not need GitLab to clone the source code. GIT_STRATEGY: none stage: push - only: - # Only "master" should be tagged "latest" - - master script: # Because we have no guarantee that this job will be picked up by the same runner # that built the image in the previous step, we pull it again locally