2 changed files with 41 additions and 0 deletions
@ -0,0 +1,33 @@
|
||||
kind: pipeline |
||||
name: default |
||||
|
||||
steps: |
||||
- name: build |
||||
image: golang |
||||
commands: |
||||
- GOPROXY=https://modules.fromouter.space go mod download |
||||
- CGO_ENABLED=0 go install . |
||||
volumes: |
||||
- name: gopath |
||||
path: /go |
||||
|
||||
- name: publish |
||||
image: plugins/docker |
||||
settings: |
||||
auto_tag: true |
||||
dockerfile: Dockerfile |
||||
repo: hamcha/mlpdraftbot |
||||
target: final |
||||
username: |
||||
from_secret: docker_username |
||||
password: |
||||
from_secret: docker_password |
||||
when: |
||||
event: |
||||
- push |
||||
- tag |
||||
branch: master |
||||
|
||||
volumes: |
||||
- name: gopath |
||||
temp: {} |
Loading…
Reference in new issue