gospt/.woodpecker.yml

17 lines
393 B
YAML

pipeline:
build:
image: golang:1.19
commands:
- go build -o gospt
- ./gospt completion zsh > completions/gospt_zsh
- ./gospt completion bash > completions/gospt_bash
- ./gospt completion fish > completions/gospt_fish
publish:
image: goreleaser/goreleaser
commands:
- goreleaser release
secrets: [ gitea_token ]
when:
event: tag