go-gluon-publisher/.woodpecker.yml
Stefan c4546b210a
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
debug
2023-05-29 23:11:07 +02:00

33 lines
552 B
YAML

---
platform: linux/arm64
clone:
git:
image: woodpeckerci/plugin-git
pipeline:
build:
image: golang:1.20
commands:
- go build -o go-gluon-publish-${GOOS}-${GOARCH}
- ls -alh
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.freifunk-rhein-sieg.net
files:
- "go-gluon-publish-${GOOS}-${GOARCH}"
api_key:
from_secret: API_KEY
target: main
when:
event: tag
matrix:
GOOS:
- linux
GOARCH:
- arm64
- amd64