25 lines
456 B
YAML
25 lines
456 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: E5SubBotForSQLite
|
|
steps:
|
|
- name: gobuild
|
|
image: golang:alpine
|
|
pull: if-not-exists
|
|
commands:
|
|
- GOPROXY=https://goproxy.cn CGO_ENABLED=1 go build
|
|
|
|
- name: gitea_release
|
|
image: plugins/gitea-release
|
|
pull: if-not-exists
|
|
settings:
|
|
api_key:
|
|
from_secret: gitea_token
|
|
base_url: https://git.rainss.cn
|
|
files:
|
|
- main
|
|
checksum:
|
|
- md5
|
|
- sha1
|
|
- sha256
|
|
when:
|
|
event: tag |