20 lines
509 B
YAML
20 lines
509 B
YAML
|
pipeline:
|
||
|
build:
|
||
|
image: golang:1.16
|
||
|
commands:
|
||
|
- go mod vendor
|
||
|
- GOOS=linux GOARCH=amd64 go build -o "dist/adept-linux-amd64-${CI_COMMIT_TAG}"
|
||
|
- GOOS=windows GOARCH=amd64 go build -o "dist/adept-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/adept-*
|
||
|
when:
|
||
|
event: tag
|