markdown-monster-club/.drone.yml
Alexey Skobkin b94f7b6915
All checks were successful
continuous-integration/drone/push Build is passing
small fix in .drone.yml
2023-12-22 05:41:41 +03:00

22 lines
479 B
YAML

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