parent
56800204c1
commit
136b45e90a
67
.drone.yml
67
.drone.yml
|
@ -36,7 +36,7 @@ steps:
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: release
|
name: release-main
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
|
@ -54,6 +54,7 @@ steps:
|
||||||
image: golang:1.15
|
image: golang:1.15
|
||||||
environment:
|
environment:
|
||||||
GOPROXY: https://goproxy.cn
|
GOPROXY: https://goproxy.cn
|
||||||
|
VERSION: ${DRONE_COMMIT}
|
||||||
commands:
|
commands:
|
||||||
- make build
|
- make build
|
||||||
- name: build-windows
|
- name: build-windows
|
||||||
|
@ -61,6 +62,7 @@ steps:
|
||||||
image: golang:1.15
|
image: golang:1.15
|
||||||
environment:
|
environment:
|
||||||
GOPROXY: https://goproxy.cn
|
GOPROXY: https://goproxy.cn
|
||||||
|
VERSION: ${DRONE_COMMIT}
|
||||||
GOOS: windows
|
GOOS: windows
|
||||||
commands:
|
commands:
|
||||||
- make build
|
- make build
|
||||||
|
@ -75,4 +77,65 @@ steps:
|
||||||
base: https://gitea.com
|
base: https://gitea.com
|
||||||
files:
|
files:
|
||||||
- "tmpl"
|
- "tmpl"
|
||||||
- "tmpl.exe"
|
- "tmpl.exe"
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
- build-windows
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: release-tag
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
pull: always
|
||||||
|
image: golang:1.15
|
||||||
|
environment:
|
||||||
|
GOPROXY: https://goproxy.cn
|
||||||
|
VERSION: ${DRONE_TAG}
|
||||||
|
commands:
|
||||||
|
- make build
|
||||||
|
- name: build-windows
|
||||||
|
pull: always
|
||||||
|
image: golang:1.15
|
||||||
|
environment:
|
||||||
|
GOPROXY: https://goproxy.cn
|
||||||
|
GOOS: windows
|
||||||
|
VERSION: ${DRONE_TAG}
|
||||||
|
commands:
|
||||||
|
- make build
|
||||||
|
- name: gitea-release
|
||||||
|
pull: always
|
||||||
|
image: jolheiser/drone-gitea-main:latest
|
||||||
|
environment:
|
||||||
|
GOPROXY: https://goproxy.cn
|
||||||
|
settings:
|
||||||
|
token:
|
||||||
|
from_secret: gitea_token
|
||||||
|
base: https://gitea.com
|
||||||
|
files:
|
||||||
|
- "tmpl"
|
||||||
|
- "tmpl.exe"
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
- build-windows
|
||||||
|
- name: gitea-prune
|
||||||
|
pull: always
|
||||||
|
image: jolheiser/drone-gitea-prune
|
||||||
|
environment:
|
||||||
|
GOPROXY: https://goproxy.cn
|
||||||
|
settings:
|
||||||
|
token:
|
||||||
|
from_secret: gitea_token
|
||||||
|
base: https://gitea.com
|
||||||
|
depends_on:
|
||||||
|
- gitea-release
|
Loading…
Reference in New Issue