fix: refactor cover letter functions #85
Workflow file for this run
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: Check PDF Compilation | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
build: | |
name: compile-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Setup Typst | |
uses: yusancky/[email protected] | |
id: setup-typst | |
with: | |
version: 'latest' | |
- run: typst compile cv.typ --font-path ./src/fonts | |
- run: typst compile letter.typ --font-path ./src/fonts | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: output | |
path: ./*.pdf | |
if-no-files-found: error |