You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
449 B
YAML
26 lines
449 B
YAML
1 year ago
|
kind: pipeline
|
||
|
type: kubernetes
|
||
|
name: Build Docker image on main
|
||
|
|
||
|
steps:
|
||
|
- name: build image
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
repo: gitea.ravianand.me/dan6erbond/listy
|
||
|
registry: gitea.ravianand.me
|
||
|
username:
|
||
|
from_secret: docker_username
|
||
|
password:
|
||
|
from_secret: docker_password
|
||
|
tags:
|
||
|
- main
|
||
|
- latest
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- main
|
||
|
event:
|
||
|
include:
|
||
|
- push
|
||
|
- custom
|