2020-04-06 23:31:26 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-04-07 23:03:53 +02:00
|
|
|
type: docker
|
|
|
|
name: default-linux-amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
arch: amd64
|
|
|
|
os: linux
|
2020-04-06 23:31:26 +02:00
|
|
|
|
|
|
|
steps:
|
2020-04-07 23:03:53 +02:00
|
|
|
- name: build
|
2020-04-06 23:31:26 +02:00
|
|
|
image: golang
|
2020-04-07 23:43:41 +02:00
|
|
|
commands:
|
|
|
|
- ./ci-build.sh
|
2020-04-07 23:15:47 +02:00
|
|
|
environment:
|
|
|
|
GOOS: linux
|
|
|
|
GOARCH: amd64
|
2020-04-08 00:03:09 +02:00
|
|
|
DRONE_TAG: ${DRONE_TAG}
|
2020-04-07 00:20:03 +02:00
|
|
|
- name: release
|
|
|
|
image: plugins/gitea-release
|
|
|
|
settings:
|
|
|
|
base_url: https://git.paulbsd.com
|
|
|
|
api_key:
|
|
|
|
from_secret: gitea_token
|
2020-04-07 23:03:53 +02:00
|
|
|
files: dist/*.tar.gz
|
2020-04-07 00:21:25 +02:00
|
|
|
when:
|
|
|
|
event: tag
|