docs: add project documentation for Casino Gaming Platform #285

Merged
jleibl merged 5 commits from add-project-documentation into main 2025-06-04 10:48:00 +00:00
Showing only changes of commit 17774fcdb2 - Show all commits

28
.gitea/workflows/docs.yml Normal file
View file

@ -0,0 +1,28 @@
name: Build docs
on:
push:
branches: [main]
jobs:
build-docs:
runs-on: ubuntu-latest
container:
image: git.kjan.de/actions/runner-latex:latest
env:
# Edit here with the names of your latex file and directory (can use ".")
DIR: docs
FILE: projektdokumentation.tex
steps:
- name: Checkout
uses: actions/checkout@v2
- name: LaTeX compile
working-directory: ${{ env.DIR }}
run: latexmk -pdf -xelatex ${{ env.FILE }}
- name: Upload artifacts
uses: https://git.kjan.de/actions/upload-artifact@v3
with:
name: Doku
path: docs/projektdokumentation.pdf