27 lines
389 B
YAML
27 lines
389 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: linux-amd64
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: docker
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
purge: true
|
||
|
no_cache: true
|
||
|
auto_tag: true
|
||
|
repo: samuelph/matrix-commander
|
||
|
username:
|
||
|
from_secret: USERNAME
|
||
|
password:
|
||
|
from_secret: PASSWORD
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- main
|
||
|
event:
|
||
|
- push
|