24 lines
576 B
YAML
24 lines
576 B
YAML
name: Build LaTeX on Host
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macmini
|
|
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Compile LaTeX using local TeX Live
|
|
# These commands run directly in your machine's shell
|
|
run: |
|
|
echo "Compiling document..."
|
|
latexmk distribution.tex
|
|
latexmk Notes_SODA23.tex
|
|
latexmk SDP.tex
|
|
|
|
- name: Upload PDF artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: distribution.pdf
|
|
path: distribution.pdf |