Added .drone.yml

pull/7/head
Joey Hines 2021-06-27 20:13:43 -06:00
parent 684b269039
commit e91e5ae9e5
No known key found for this signature in database
GPG Key ID: 80F567B5C968F91B
1 changed files with 36 additions and 0 deletions

36
.drone.yml 100644
View File

@ -0,0 +1,36 @@
---
kind: pipeline
type: docker
name: compliance
steps:
- name: build
image: maven:3-openjdk-16
commands:
- mvn install
---
kind: pipeline
type: docker
name: release
trigger:
branch:
- main
event:
- push
steps:
- name: build
image: maven:3-openjdk-16
commands:
- mvn install
- name: gitea-release
pull: always
image: jolheiser/drone-gitea-main:latest
settings:
token:
from_secret: gitea_token
base: https://git.canopymc.net
files:
- "target/QoL-*.jar"