Skip to content
Snippets Groups Projects
Verified Commit bdff803d authored by micah's avatar micah :speech_balloon:
Browse files

switch to the glue include

parent 89a1f668
No related branches found
No related tags found
No related merge requests found
image: docker:latest ---
include:
services: - 'https://0xacab.org/leap/container-platform/glue/raw/master/.gitlab-ci.yml'
- docker:dind
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
RELEASE_TAG: $CI_REGISTRY_IMAGE:latest
stages:
- build
- release
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.0xacab.org
build:
stage: build
tags:
- docker-in-docker
script:
- docker build --pull -t $IMAGE_TAG .
- docker push $IMAGE_TAG
release:
stage: release
tags:
- docker-in-docker
script:
- docker pull $IMAGE_TAG
- docker tag $IMAGE_TAG $RELEASE_TAG
- docker push $RELEASE_TAG
only:
- master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment