Files
cv/.github/workflows/build_pdf.yml
installer 8413bbe911 fix: typo
2025-01-16 18:34:38 +01:00

32 lines
582 B
YAML

name: Build PDF and Upload Artifact
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: typst-community/setup-typst@v3
with:
cache-dependency-path: requirements.typ
- run: |
typst compile cv_en.typ cv_en.pdf
typst compile cv_fr.typ cv_fr.pdf
- name: Upload PDF as artifact
uses: actions/upload-artifact@v2
with:
name: CV
path: |
cv_fr.pdf
cv_en.pdf