small fix in .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Alexey Skobkin 2023-12-22 05:00:56 +03:00
parent c3409b9a1c
commit b94f7b6915
No known key found for this signature in database
GPG key ID: 5D5CEF6F221278E7

View file

@ -3,15 +3,19 @@ type: docker
name: build
steps:
-
name: build-book
image: 'pandoc/minimal:3'
- name: build-book
image: 'pandoc/core:3'
commands:
- 'find ./chapters -iname "*.md" -type f -print | sort | xargs -r docker run --rm --volume "$(pwd):/data" --user $(id -u):$(id -g) pandoc/minimal -o book.epub title.txt'
- '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: $GITEA_TOKEN
api_key:
from_secret: gitea_token
base_url: https://git.skobk.in
files:
- 'book.epub'
when:
event:
- tag