23 lines
456 B
YAML
23 lines
456 B
YAML
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: tag-${DRONE_TAG}
|
|
files: build/*
|
|
|
|
when:
|
|
event: tag
|
|
|
|
depends_on:
|
|
- build
|