add ci setting #3

Merged
root merged 1 commits from release/1.0.1 into master 2021-06-14 16:09:15 +00:00
1 changed files with 34 additions and 0 deletions

34
.drone.yml Normal file
View File

@ -0,0 +1,34 @@
kind: pipeline
name: release
steps:
- name: build
image: golang:rc
volumes:
- name: dist
path: /data
commands:
- make build
- cp -r contrib /data
- cp deploy /data
- cp config.yml.sample /data/config.yml
- name: relase
image: plugins/gitea-release
volumes:
- name: dist
path: /data
settings:
api_key:
from_secret: api-key
base_url: https://git.trj.tw
files: /data/*
checksum:
- md5
- sha1
- sha256
when:
event: tag
volumes:
- name: dist
temp: {}