Skip to content

Commit 7791036

Browse files
taylorarndtCopilot
andcommitted
fix: switch to epub3-to-daisy202, add continue-on-error for DAISY/BRF
DAISY 3 talking book requires TTS audio engine (not available in CI). DAISY 2.02 text-only is widely supported and doesn't need TTS. continue-on-error ensures EPUB+Word always upload successfully. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a6b9074 commit 7791036

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-epub.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,16 @@ jobs:
5353
sleep 2
5454
done
5555
56-
- name: Convert EPUB to DAISY (talking book)
56+
- name: Convert EPUB to DAISY 2.02 (text-only talking book)
57+
continue-on-error: true
5758
run: |
5859
mkdir -p epub/daisy
59-
pipeline2/daisy-pipeline/cli/dp2 epub3-to-daisy3 \
60+
pipeline2/daisy-pipeline/cli/dp2 epub3-to-daisy202 \
6061
--source epub/git-going-with-github.epub \
6162
--output epub/daisy/
6263
6364
- name: Convert EPUB to BRF (Braille)
65+
continue-on-error: true
6466
run: |
6567
mkdir -p epub/brf
6668
pipeline2/daisy-pipeline/cli/dp2 epub3-to-pef \

0 commit comments

Comments
 (0)