Adds epub format to build workflow

Extends the build workflow to include the 'epub' format for both development and production environments.
Ensures final status report is always generated.
This commit is contained in:
Vijay Janapa Reddi
2025-06-12 11:36:55 -04:00
parent 8d7102a122
commit 2e42aa5d94

View File

@@ -46,7 +46,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
format: [html, pdf]
format: [html, pdf, epub] # added epub
uses: ./.github/workflows/quarto-build.yml
with:
environment: development
@@ -64,7 +64,8 @@ jobs:
strategy:
fail-fast: false
matrix:
format: [html, pdf]
os: [ubuntu-latest, windows-latest]
format: [html, pdf, epub] # added epub
uses: ./.github/workflows/quarto-build.yml
with:
environment: production
@@ -77,6 +78,7 @@ jobs:
report-status:
name: 📊 Final Status Report
if: always()
needs: [
structure-check,
link-check,