markdown-monster-club/.drone.yml

23 lines
545 B
YAML

kind: pipeline
type: docker
name: build
steps:
- name: build-book
image: 'pandoc/core:3'
commands:
- 'echo "Current tag (if any): $DRONE_TAG"'
- 'find ./chapters -iname "*.md" -type f -print | sort | xargs -r pandoc -o "monster-club_$DRONE_TAG.epub" --verbose title.txt'
- 'ls -la ./*.epub'
- name: gitea_release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
base_url: https://git.skobk.in
files:
- '*.epub'
when:
event:
- tag