markdown-monster-club/.drone.yml
Alexey Skobkin 6cc7043090
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Trying to fix tagged file build.
2023-12-22 18:06:26 +03:00

23 lines
557 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" 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:
- 'monster-club_$DRONE_TAG.epub'
when:
event:
- tag