Using triggers for pipelines.

This commit is contained in:
Alexey Skobkin 2024-11-21 23:59:56 +03:00
parent 3cffeff5df
commit b467c41452
No known key found for this signature in database
GPG key ID: 5D5CEF6F221278E7

View file

@ -1,14 +1,15 @@
kind: pipeline
type: docker
name: build-pr
name: build
steps:
- name: build
- name: 'docker_build'
image: plugins/docker
settings:
dry_run: true
purge: true
when:
trigger:
event:
- pull_request
- push
@ -16,10 +17,10 @@ steps:
---
kind: pipeline
type: docker
name: build-and-publish
name: publish
steps:
- name: publish
- name: 'docker_publish'
image: plugins/docker
settings:
username:
@ -31,6 +32,6 @@ steps:
tags:
- ${DRONE_TAG}
- latest
when:
trigger:
event:
- tag