2023-10-17 22:15:53 +02:00
|
|
|
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:
|
2023-10-17 22:25:38 +02:00
|
|
|
index-title: "WS 23:24: Game Theory in Flow Problems"
|