Improve drone CI to handle tags and build latest image on main branch only.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Madeorsk 2021-08-01 01:41:54 +02:00
parent a7a7eb95c0
commit 7d82720735
1 changed files with 17 additions and 1 deletions

View File

@ -3,7 +3,7 @@ type: docker
name: build-docker-image
steps:
- name: docker
- name: docker-latest
image: plugins/docker
settings:
repo: madeorsk/clang-llvm-meson-buildtools
@ -11,3 +11,19 @@ steps:
from_secret: docker_registry_username
password:
from_secret: docker_registry_password
when:
branch:
- main
- name: docker-tag
image: plugins/docker
settings:
repo: madeorsk/clang-llvm-meson-buildtools
tags: ${DRONE_TAG}
username:
from_secret: docker_registry_username
password:
from_secret: docker_registry_password
when:
ref:
- refs/tags/*