logginghandler/.woodpecker.yml

27 lines
395 B
YAML
Raw Permalink Normal View History

2022-01-28 12:47:08 +01:00
pipeline:
tags:
image: alpine/git
commands:
- git fetch --tags
lint:
2022-03-23 13:58:48 +01:00
image: golang:1.18
2022-01-28 12:47:08 +01:00
commands:
- make lint
test:
2022-03-23 13:58:48 +01:00
image: golang:1.18
2022-01-28 12:47:08 +01:00
commands:
- make test
build:
2022-03-23 13:58:48 +01:00
image: golang:1.18
2022-01-28 12:47:08 +01:00
commands:
- make build
release:
2022-03-23 13:58:48 +01:00
image: golang:1.18
2022-01-28 12:47:08 +01:00
commands:
- make release
secrets:
- gitea_token
when:
event:
- tag