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_$DRONE_TAG.epub" --verbose title.txt' - 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