peckertest/.woodpecker.yml
Torjus Håkestad c47588e3d5
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Change goreleaser step
2022-01-13 11:09:37 +01:00

46 lines
974 B
YAML

pipeline:
test_short:
image: golang:latest
commands:
- go build main.go
- go test -v ./...
when:
event: [pull_request, push]
image-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
image-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]
goreleaser-tagged:
image: goreleaser/goreleaser
commands:
- echo "$GITEA_TOKEN" > gitea_token
- goreleaser release
when:
event: [tag]
secrets: [ssh_key]