ci-configs/mpt.yaml

24 lines
514 B
YAML
Raw Normal View History

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