23 lines
390 B
YAML
23 lines
390 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: build and publish
|
||
|
|
||
|
steps:
|
||
|
- name: build binary package
|
||
|
image: mydatakeeper/drone-makepkg:x86_64
|
||
|
|
||
|
- name: publish
|
||
|
image: plugins/gitea-release
|
||
|
settings:
|
||
|
api_key:
|
||
|
from_secret: deploy_token
|
||
|
base_url: https://git.sys42.eu
|
||
|
files: *.pkg.tar.zst
|
||
|
checksum: md5sum
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- tag
|
||
|
- pull_request
|