2023-10-17 21:03:49 +02:00
|
|
|
name: Build latex and deploy
|
|
|
|
run-name: ${{ gitea.actor }} is building latex
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
checkout:
|
2023-10-17 23:48:12 +02:00
|
|
|
runs-on: latex-latest
|
2023-10-17 21:03:49 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: compile
|
|
|
|
run: make
|
|
|
|
- name: Prepare pages
|
|
|
|
run: |
|
|
|
|
mkdir public
|
2023-10-17 23:43:24 +02:00
|
|
|
mv build/logic2.pdf build/logic2.log README.md public
|
2023-10-17 21:03:49 +02:00
|
|
|
- name: Deploy to pages
|
|
|
|
uses: actions/pages@v1
|
|
|
|
with:
|
|
|
|
index-title: 'WS23/24: Logic II'
|