From 7078e53a5299d5152c4463dd642a5da060723f76 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 27 Jul 2021 23:22:54 +0200 Subject: [PATCH] Update --- .gitlab-ci.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a5c0712..d682fdb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,34 @@ -image: docker:latest +# stages: +# - build +# - test +# - deploy + +# services: +# - docker:stable-dind + +# build-latest: +# image: docker:stable +# stage: build +# only: +# - main +# script: +# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY + +# - docker pull $CI_REGISTRY_IMAGE:latest || true +# - docker build --cache-from $CI_REGISTRY_IMAGE:latest -t $CI_REGISTRY_IMAGE . + +# - docker tag $CI_REGISTRY_IMAGE:latest $CI_REGISTRY_IMAGE:latest + +# - docker push $CI_REGISTRY_IMAGE:latest + +image: docker:stable stages: - build - push before_script: - - echo -n $CI_JOB_TOKEN | docker login -u gitlab-ci-token --password-stdin $CI_REGISTRY + - echo -n $CI_JOB_TOKEN | docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY Build: stage: build