This commit is contained in:
parent
3247044ca2
commit
0fec124495
2 changed files with 23 additions and 0 deletions
18
.drone.yml
Normal file
18
.drone.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: fetch
|
||||||
|
image: docker:git
|
||||||
|
commands:
|
||||||
|
- git fetch --tags
|
||||||
|
|
||||||
|
- name: release
|
||||||
|
image: golang
|
||||||
|
environment:
|
||||||
|
GITEA_TOKEN:
|
||||||
|
from_secret: GITEA_TOKEN
|
||||||
|
commands:
|
||||||
|
- curl -sL https://git.io/goreleaser | bash
|
||||||
|
when:
|
||||||
|
event: tag
|
|
@ -28,3 +28,8 @@ changelog:
|
||||||
exclude:
|
exclude:
|
||||||
- '^docs:'
|
- '^docs:'
|
||||||
- '^test:'
|
- '^test:'
|
||||||
|
gitea_urls:
|
||||||
|
api: https://git.keks.cloud/api/v1/
|
||||||
|
download: https://git.keks.cloud
|
||||||
|
# set to true if you use a self-signed certificate
|
||||||
|
skip_tls_verify: false
|
Loading…
Reference in a new issue