Compare commits

..

13 commits

Author SHA1 Message Date
f28baa84a2
Merge branch 'actions'
All checks were successful
Compile / Compile (push) Successful in 1m53s
2025-02-23 10:42:56 -05:00
0c126c2fe9
Make CI use XeLaTeX
All checks were successful
Compile / Compile (push) Successful in 1m53s
2025-02-23 10:38:31 -05:00
e1efd418bb
Make TeX packages actually install
Some checks failed
Compile / Compile (push) Failing after 1m23s
2025-02-23 10:28:29 -05:00
f226a8b477
Try a more manual approach
Some checks failed
Compile / Compile (push) Failing after 15s
2025-02-23 10:26:10 -05:00
371fe18981
Go back to compatible image 2025-02-23 10:20:14 -05:00
f2a92f4459
Try on the other runner image
Some checks failed
Compile / Compile (push) Failing after 19s
2025-02-23 10:18:39 -05:00
e0f15e47af
Remove bad guesses until I figure out how to start the Docker daemon
Some checks failed
Compile / Compile (push) Failing after 7s
2025-02-23 07:04:59 -05:00
11aeb2cea2
Try something else to start the Docker daemon
Some checks failed
Compile / Compile (push) Failing after 7s
2025-02-23 07:03:25 -05:00
df8ac9b6d7
Try setup-docker to run Docker daemon
Some checks failed
Compile / Compile (push) Failing after 33s
2025-02-23 06:59:31 -05:00
076ced6f6d
Fix artifact action URL
Some checks failed
Compile / Compile (push) Failing after 45s
2025-02-23 06:50:54 -05:00
365824cc9c
Use new runner
Some checks failed
Compile / Compile (push) Failing after 42s
2025-02-23 06:47:35 -05:00
4e95c3a4b0
Add Docker setup
Some checks failed
Compile / Compile (push) Failing after 37s
2025-02-23 06:09:29 -05:00
88be4bf0e1
First draft of CI
Some checks failed
Compile / Compile (push) Failing after 6s
2025-02-23 06:04:46 -05:00

View 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