dockers/ci/builder.yml

18 lines
341 B
YAML
Raw Normal View History

2023-01-17 02:39:57 +00:00
# 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
2024-08-28 01:07:20 +00:00
# Login to the docker registry to push
2024-03-25 02:02:42 +00:00
before_script:
2024-08-28 01:07:20 +00:00
- docker login -u $DOCKER_USERNAME --password-stdin <<< $TOKEN
2023-01-17 02:39:57 +00:00