docker-murmur/.drone.yml
Alexey Skobkin 25e959143b
All checks were successful
continuous-integration/drone/push Build is passing
CI builds also for master (just in case) (#6)
Co-authored-by: Alexey Skobkin <skobkin-ru@ya.ru>
Reviewed-on: #6
2024-11-21 22:18:05 +00:00

38 lines
572 B
YAML

kind: pipeline
type: docker
name: build
steps:
- name: 'docker-build'
image: plugins/docker
settings:
repo:
from_secret: DOCKER_REPO
dry_run: true
purge: true
trigger:
event:
- push
---
kind: pipeline
type: docker
name: publish
steps:
- name: 'docker-publish'
image: plugins/docker
settings:
username:
from_secret: DOCKER_LOGIN
password:
from_secret: DOCKER_TOKEN
repo:
from_secret: DOCKER_REPO
tags:
- ${DRONE_TAG}
- latest
trigger:
event:
- tag