workflow: rename to Typst #22
This file contains hidden or 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: Build Typst CV | |
| on: [push] | |
| jobs: | |
| build_latex: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v5 | |
| - uses: typst-community/setup-typst@v4 | |
| - name: Build CV | |
| run: typst compile "CV Félix Piédallu.typ" | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: PDF | |
| path: CV Félix Piédallu.pdf |