langchart/.drone.yml

27 lines
525 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
title: commit-${DRONE_COMMIT_SHA}
files: build/*
when:
event:
- push
branch:
- master
depends_on:
- build