23 lines
324 B
YAML
23 lines
324 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: buildLatestImage
|
||
|
|
||
|
steps:
|
||
|
- name: buildLatestImage
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
repo: jtom38/cookbook
|
||
|
username: jtom38
|
||
|
password:
|
||
|
from_secret: DockerPushPat
|
||
|
trigger:
|
||
|
branch:
|
||
|
include:
|
||
|
- main
|
||
|
|
||
|
event:
|
||
|
exclude:
|
||
|
- pull_request
|
||
|
|
||
|
|