16 lines
272 B
YAML
16 lines
272 B
YAML
|
pipeline:
|
||
|
build-test:
|
||
|
image: go
|
||
|
commands:
|
||
|
- go build
|
||
|
- go test
|
||
|
|
||
|
publish:
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
username: realaravinth
|
||
|
password:
|
||
|
from_secret: DOCKER_TOKEN
|
||
|
repo: realaravinth/rageshake
|
||
|
tags: latest
|