Fix typo in user guide preview #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual to EPUB | |
on: [pull_request, push] | |
jobs: | |
convert: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/linuxserver/calibre | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Convert ebook | |
run: ebook-convert user_guide/index.html koreader_user_guide.epub | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: KOReader Manual EPUB | |
path: koreader_user_guide.epub |