18 lines
341 B
YAML
18 lines
341 B
YAML
# This template is for the main builder jobs to inherit generic properties from
|
|
|
|
stages:
|
|
- publish
|
|
|
|
.builder:
|
|
image: docker:stable
|
|
stage: publish
|
|
services:
|
|
- docker:dind
|
|
only:
|
|
refs:
|
|
- master
|
|
# Login to the docker registry to push
|
|
before_script:
|
|
- docker login -u $DOCKER_USERNAME --password-stdin <<< $TOKEN
|
|
|