forked from aris-space/helios-procedures
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 1.08 KB
/
compile-latex.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build LaTeX Document
on: [push, pull_request]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full history to detect changes
- name: Set Up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Compile and Move LaTeX Documents Inside Docker
run: |
docker run --rm \
-v "${{ github.workspace }}:/workspace" \
-w /workspace \
texlive/texlive:latest \
bash -c "apt-get update && \
apt-get install -y git python3-pip python3-venv && \
python3 -m venv /workspace/venv && \
/workspace/venv/bin/pip install gitpython && \
/workspace/venv/bin/python scripts/compile-all-latex.py && \
/workspace/venv/bin/python scripts/move-files.py"
- name: Upload PDF Artifacts
uses: actions/upload-artifact@v4
with:
name: compiled-pdfs
path: release/*