peckertest/.woodpecker.yml

37 lines
782 B
YAML
Raw Normal View History

2022-01-10 12:02:45 +00:00
pipeline:
2022-01-10 12:19:48 +00:00
test_short:
image: golang:latest
commands:
- go build main.go
- go test -v ./...
when:
event: [pull_request]
2022-01-10 12:02:45 +00:00
release-latest:
image: plugins/docker
settings:
repo: registry.t-juice.club/peckertest
registry: registry.t-juice.club
username: woodpecker
password:
from_secret: registry_password
tags:
- latest
- "${CI_COMMIT_SHA:0:8}"
when:
branch: master
event: push
release-tagged:
image: plugins/docker
settings:
repo: registry.t-juice.club/peckertest
registry: registry.t-juice.club
username: woodpecker
password:
from_secret: registry_password
tags:
- "${CI_COMMIT_TAG}"
when:
event: [tag]