dockers/ci/builder.yml

18 lines
369 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-03-25 02:02:42 +00:00
# Ensure we login to docker hub before hand everytime
before_script:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
2023-01-17 02:39:57 +00:00