21 lines
303 B
YAML
21 lines
303 B
YAML
|
kind: pipeline
|
||
|
type: exec
|
||
|
name: default
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: build and push
|
||
|
commands:
|
||
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||
|
- make docker_release
|
||
|
when:
|
||
|
branch:
|
||
|
- master
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- push
|