wg-quicker/.woodpecker.yml

36 lines
557 B
YAML
Raw Normal View History

2022-02-07 15:34:59 +01:00
pipeline:
tags:
image: alpine/git
commands:
- git fetch --tags
submodules:
image: alpine/git
commands:
- git submodule init
- git submodule update
when:
event:
- tag
lint:
image: golang:1.17
commands:
- make lint
test:
image: golang:1.17
commands:
- make test
build:
image: golang:1.17
commands:
- make build
release:
image: golang:1.17
commands:
- git checkout -- .
2022-02-07 15:34:59 +01:00
- make release
secrets:
- github_token
when:
event:
- tag