From 5de1db263192e4f790c71219f08d3600793ee4c9 Mon Sep 17 00:00:00 2001 From: Josia Pietsch Date: Tue, 17 Oct 2023 21:03:49 +0200 Subject: [PATCH] gitea ci --- .gitea/workflows/build.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..93224a2 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -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'