23 lines
446 B
YAML
23 lines
446 B
YAML
pipeline:
|
|
build:
|
|
when:
|
|
event: [push, pull_request, tag, deployment]
|
|
image: golang:latest
|
|
commands:
|
|
- go build -o segfautils
|
|
dockerize_n_publish:
|
|
when:
|
|
event: [push]
|
|
name: dockerize and publish
|
|
image: plugins/docker
|
|
settings:
|
|
username:
|
|
from_secret: username
|
|
password:
|
|
from_secret: password
|
|
repo: projectsegfault/segfautils
|
|
dockerfile: Dockerfile
|
|
|
|
|
|
|