muldap/.woodpecker.yml

20 lines
516 B
YAML
Raw Permalink Normal View History

2022-06-11 00:47:20 -04:00
pipeline:
build:
image: golang:1.18
commands:
- go mod vendor
- GOOS=linux GOARCH=amd64 go build -o "dist/muldap-linux-amd64-${CI_COMMIT_TAG}.bin"
- GOOS=windows GOARCH=amd64 go build -o "dist/muldap-windows-amd64-${CI_COMMIT_TAG}.exe"
gitea_release:
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_api_key
base_url: https://git.metaunix.net
title: "${CI_COMMIT_TAG}"
files:
- dist/muldap-*
when:
event: tag