From 21d5c12333284328f15bb88592f1ef9ac13e80d4 Mon Sep 17 00:00:00 2001 From: Jochen Mehlich Date: Sat, 18 Nov 2023 12:02:39 +0100 Subject: [PATCH] test auto build Signed-off-by: Jochen Mehlich --- .gitea/workflows/build.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 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..7542791 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,20 @@ +name: Build Webpage +run-name: build page + +on: [push] + +jobs: + Render: + runs-on: python + steps: + - name: install dependencies + run: cd latex-wochenende/onpoint + run: pip3 install -r requirements.txt + - name: Build presentation + run: bash deploy.sh + - name: Save to cache + uses: actions/cache/save@v3 + id: cache + with: + path: . + key: 'latex-presentation'