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'