From 9018d04efd8326761ca7a8db3e7d6dd48c878b83 Mon Sep 17 00:00:00 2001 From: jonasled <1-jonasled@users.noreply.gitlab.jonasled.de> Date: Thu, 10 Sep 2020 15:40:28 +0000 Subject: [PATCH] cleanup --- .gitlab-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 357a38e..80eafb7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,6 @@ build: #This will be executed on every push. It builds an docker image, which is - master script: - echo "building for branch $CI_COMMIT_REF_NAME" - - sudo docker image prune -f #Delete old unused images - sudo docker pull python:3 - sudo docker build -t gitlab.jonasled.de/jonasled/url_shorter_docker:$CI_COMMIT_REF_NAME . #Build the image with the name already set to push - sudo docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY #Login to docker registry, username and password will be filled while executing @@ -32,7 +31,6 @@ build-release: #This will be executed if you push on master, it makes a new rele - git config --global user.email "noreply@jonasled.de" - git tag -a $version -m "$version" #add a tag with the current version - git push --tags -o ci.skip ssh://git@gitlab.jonasled.de:2222/jonasled/url_shorter_docker #Push the tag to the repo ci.skip means don't build the image again. I've configured an ssh key for the runner user,so it can push via ssh. - - sudo docker image prune -f #Delete old unused images - sudo docker pull python:3 - sudo docker build -t gitlab.jonasled.de/jonasled/url_shorter_docker . #Build the image with the name already set to push - sudo docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY #Login to docker registry, username and password will be filled while executing -- GitLab