langchart/.drone.yml

24 lines
456 B
YAML
Raw Normal View History

2021-03-30 15:06:01 +02:00
kind: pipeline
name: release
steps:
- name: build
image: minlag/mermaid-cli
commands:
- apt install make
- make
- name: publish
image: plugins/gitea-release
settings:
base_url: https://data.tilera.xyz/git
api_key:
from_secret: gitea_token
2021-03-30 15:10:28 +02:00
title: tag-${DRONE_TAG}
2021-03-30 15:06:01 +02:00
files: build/*
when:
2021-03-30 15:10:28 +02:00
event: tag
2021-03-30 15:06:01 +02:00
depends_on:
- build