From 7a35b39c1ae5d096e218382158d7803c02666976 Mon Sep 17 00:00:00 2001 From: Alexey Kuklin <alexey.kuklin@vereign.com> Date: Mon, 13 Jan 2020 00:53:58 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5aab4e..dee57be 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,6 @@ services: stages: - build - manifest -- deploy variables: DOCKER_CONFIG: ~/.docker/$CI_JOB_ID @@ -50,15 +49,4 @@ manifest: - docker manifest create $IMAGE $IMAGE_amd64 $IMAGE_ppc64le - docker manifest push $IMAGE -deploy: - stage: deploy - tags: - - hv2 - only: - - master - script: - - apk add curl - - for ref in $DEPLOYENVS; do curl -X POST -F token=$TRIGGER_TOKEN -F ref=$ref -F variables[branch]=master https://code.vereign.com/api/v4/projects/59/trigger/pipeline; done - - -- GitLab