29 lines
678 B
YAML
29 lines
678 B
YAML
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build_draftbot
|
||
|
image: golang
|
||
|
commands:
|
||
|
- CGO_ENABLED=0 GOPROXY=https://modules.fromouter.space go build -o release/draftbot git.fromouter.space/mcg/mlp-server-tools/draftbot
|
||
|
volumes:
|
||
|
- name: gopath
|
||
|
path: /go
|
||
|
|
||
|
- name: publish_draftbot
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
auto_tag: true
|
||
|
dockerfile: Dockerfile.publish
|
||
|
build_args: MODULE_PATH=draftbot
|
||
|
repo: hamcha/draftbot
|
||
|
target: final
|
||
|
username:
|
||
|
from_secret: docker_username
|
||
|
password:
|
||
|
from_secret: docker_password
|
||
|
when:
|
||
|
event:
|
||
|
- push
|
||
|
- tag
|
||
|
branch: master
|