mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-19 10:55:57 -05:00
40 lines
582 B
YAML
40 lines
582 B
YAML
---
|
|
kind: pipeline
|
|
name: 🐳 Docker
|
|
|
|
steps:
|
|
- name: 📦 Image
|
|
image: plugins/kaniko
|
|
settings:
|
|
repo: r.mills.io/prologic/zs
|
|
tags: latest
|
|
username:
|
|
from_secret: registry_username
|
|
password:
|
|
from_secret: registry_password
|
|
when:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
|
|
---
|
|
kind: pipeline
|
|
name: 🥳 Done
|
|
|
|
steps:
|
|
- name: 🔔 Notify
|
|
image: plugins/webhook
|
|
settings:
|
|
urls:
|
|
- https://msgbus.mills.io/ci.mills.io
|
|
|
|
depends_on:
|
|
- 🐳 Docker
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|