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