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
3 changed files with 1384 additions and 0 deletions

View file

@ -12,3 +12,8 @@ ci:
- changed-files: - changed-files:
- any-glob-to-any-file: - any-glob-to-any-file:
- ".gitea/**" - ".gitea/**"
docs:
- changed-files:
- any-glob-to-any-file:
- "docs/**"

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

File diff suppressed because it is too large Load diff