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
on: | |
push: | |
paths: | |
- 'document/**.typ' | |
- '.github/workflows/typst_compile.yml' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: typst-community/setup-typst@v3 | |
- run: typst compile document/main.typ --font-path document/fonts document.pdf | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
add: 'document.pdf' | |
message: Add compiled PDF |