2023-10-21 15:02:05 +02:00
|
|
|
name: Build latex and deploy
|
|
|
|
run-name: ${{ gitea.actor }} is building latex
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
checkout:
|
|
|
|
runs-on: latex-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: compile
|
|
|
|
run: make
|
|
|
|
- name: Prepare pages
|
|
|
|
run: |
|
|
|
|
mkdir public
|
2024-01-22 23:15:32 +01:00
|
|
|
mv build/*.pdf build/*.log README.md public
|
2023-10-21 15:02:05 +02:00
|
|
|
- name: Deploy to pages
|
|
|
|
uses: actions/pages@v1
|
|
|
|
with:
|
|
|
|
index-title: 'WS23/24: Logic III'
|