This commit is contained in:
parent
2d912c7f87
commit
5de1db2631
1 changed files with 19 additions and 0 deletions
19
.gitea/workflows/build.yaml
Normal file
19
.gitea/workflows/build.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Build latex and deploy
|
||||
run-name: ${{ gitea.actor }} is building latex
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
checkout:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: compile
|
||||
run: make
|
||||
- name: Prepare pages
|
||||
run: |
|
||||
mkdir public
|
||||
mv logic2.pdf public
|
||||
- name: Deploy to pages
|
||||
uses: actions/pages@v1
|
||||
with:
|
||||
index-title: 'WS23/24: Logic II'
|
Loading…
Reference in a new issue