Skip to content
Snippets Groups Projects
Unverified Commit 1cce76ce authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Port credentials to all jobs

parent bf380f27
No related branches found
No related tags found
No related merge requests found
......@@ -18,33 +18,30 @@ build:
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--destination "${CI_REGISTRY_IMAGE}:${CI_COMMIT_TAG}"
tag-latest:
.tag-template:
stage: tag
image: docker:24.0.7
rules:
- if: $CI_COMMIT_TAG
when: manual
before_script:
- mkdir -p $HOME/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "${CI_REGISTRY_USER}" "${CI_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > $HOME/.docker/config.json
tag-latest:
extends: .tag-template
script:
- docker buildx imagetools create --tag $CI_REGISTRY_IMAGE:latest $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
tag-major:
stage: tag
image: docker:24.0.7
rules:
- if: $CI_COMMIT_TAG
when: manual
extends: .tag-template
script:
- export newtag=$(echo $CI_COMMIT_TAG | cut -d. -f 1)
- docker buildx imagetools create --tag $CI_REGISTRY_IMAGE:$newtag $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
tag-minor:
stage: tag
image: docker:24.0.7
rules:
- if: $CI_COMMIT_TAG
when: manual
extends: .tag-template
script:
- mkdir -p $HOME/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "${CI_REGISTRY_USER}" "${CI_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > $HOME/.docker/config.json
- export newtag=$(echo $CI_COMMIT_TAG | cut -d. -f 1-2)
- docker buildx imagetools create --tag $CI_REGISTRY_IMAGE:$newtag $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment