Compare commits

...

1 Commits

Author SHA1 Message Date
b5b4359c92
add drone build
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-30 09:28:45 +00:00

32
.drone.yml Normal file
View File

@ -0,0 +1,32 @@
---
kind: pipeline
type: docker
name: deb-build
steps:
- name: build
image: ubuntu:22.04
commands:
- apt -y update
- apt -y install build-essential debhelper libssl-dev libpam-dev
- ./configure.sh
- make deb
- name: upload artifact
image: git.burble.dn42/burble.dn42/drone-gitea-pkg-plugin:latest
settings:
token:
from_secret: TOKEN
version: VERSION
artifact: emailrelay_2.5_amd64.deb
package: emailrelay
owner: burble.dn42
---
kind: secret
name: TOKEN
get:
path: burble.dn42/kv/data/drone/git.burble.dn42
name: artifact-token