Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 483 Bytes

File metadata and controls

22 lines (20 loc) · 483 Bytes

GitHub Action

name: books
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: balyakin/tessera@v1
        with:
          input: examples/semantic-demo.docx
          output: dist
          args: --lint
      - uses: actions/upload-artifact@v4
        with:
          name: tessera-artifacts
          path: dist

For releases, upload dist/*.pdf and dist/*.epub as release assets after the Tessera step.