You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wg-quicker/.woodpecker.yml

36 lines
557 B
YAML

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 -- .
- make release
secrets:
- github_token
when:
event:
- tag