Updating docker pipeline to trigger off of tags

This commit is contained in:
Daniel Weber 2024-10-05 15:25:17 -04:00
parent 86ab0fba86
commit 4576048878

View File

@ -3,22 +3,26 @@ type: docker
name: chessboard_builder
trigger:
branch:
- build_tools
event:
- push
- custom
- tag
steps:
- name: docker
image: plugins/docker
settings:
repo: git.pipsquire.com/djweber12/Chess_Board_Sim
registry: git.pipsquire.com
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: git.pipsquire.com
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- latest
- ${DRONE_TAG//"builder-v"}
when:
ref:
include:
- ref/tags/builder-v*
---