This commit is contained in:
commit
f28baa84a2
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/build.yaml
Normal file
23
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
on: [push]
|
||||
|
||||
name: Compile
|
||||
|
||||
jobs:
|
||||
compile:
|
||||
name: Compile
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install TeX packages
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get -y install latexmk texlive texlive-xetex
|
||||
- name: Compile PDF
|
||||
run: latexmk -xelatex resume.tex
|
||||
- name: Save PDF
|
||||
uses: forgejo/upload-artifact@v4
|
||||
with:
|
||||
name: CV.zip
|
||||
path: resume.pdf
|
Loading…
Add table
Add a link
Reference in a new issue