22 lines
544 B
YAML
22 lines
544 B
YAML
|
name: Compile LaTeX
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: latex-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
submodules: recursive
|
||
|
- name: Compile document
|
||
|
run: |
|
||
|
make pdf
|
||
|
mkdir public
|
||
|
mv build/2023_Game_Theory_in_Flow_Problems.pdf public/
|
||
|
mv build/2023_Game_Theory_in_Flow_Problems.log public/
|
||
|
- name: Deploy to Pages
|
||
|
uses: actions/pages@v1
|
||
|
with:
|
||
|
index-tile: "Game Theory in Flow Problems"
|