ci-configs/mcmod.yaml

24 lines
521 B
YAML
Raw Normal View History

2022-03-23 22:07:01 +01:00
kind: pipeline
type: docker
name: release
steps:
- name: build
image: adoptopenjdk/openjdk8
commands:
- chmod +x gradlew
- ./gradlew build
- name: publish
image: plugins/gitea-release
settings:
base_url: https://git.tilera.org
api_key:
from_secret: gitea_token
note: CHANGELOG.md
2022-03-23 23:39:25 +01:00
title: ${DRONE_TAG}
2022-03-23 22:07:01 +01:00
files:
- build/libs/*
when:
event: tag
depends_on:
- build