parent
56800204c1
commit
136b45e90a
65
.drone.yml
65
.drone.yml
|
@ -36,7 +36,7 @@ steps:
|
|||
|
||||
---
|
||||
kind: pipeline
|
||||
name: release
|
||||
name: release-main
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
|
@ -54,6 +54,7 @@ steps:
|
|||
image: golang:1.15
|
||||
environment:
|
||||
GOPROXY: https://goproxy.cn
|
||||
VERSION: ${DRONE_COMMIT}
|
||||
commands:
|
||||
- make build
|
||||
- name: build-windows
|
||||
|
@ -61,6 +62,7 @@ steps:
|
|||
image: golang:1.15
|
||||
environment:
|
||||
GOPROXY: https://goproxy.cn
|
||||
VERSION: ${DRONE_COMMIT}
|
||||
GOOS: windows
|
||||
commands:
|
||||
- make build
|
||||
|
@ -76,3 +78,64 @@ steps:
|
|||
files:
|
||||
- "tmpl"
|
||||
- "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