This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/.gitea/workflows/docs.yml
Jan K9f b376307272
All checks were successful
CI / Get Changed Files (pull_request) Successful in 8s
Pull Request Labeler / labeler (pull_request_target) Successful in 7s
Label PRs based on size / Check PR size (pull_request) Successful in 15s
Claude PR Review / claude-code (pull_request) Successful in 27s
CI / oxlint (pull_request) Successful in 30s
CI / eslint (pull_request) Successful in 43s
CI / prettier (pull_request) Successful in 48s
CI / test-build (pull_request) Successful in 1m30s
CI / Docker frontend validation (pull_request) Successful in 1m31s
CI / Checkstyle Main (pull_request) Successful in 2m6s
CI / Docker backend validation (pull_request) Successful in 1m55s
CI / Backend Tests (pull_request) Successful in 2m34s
fix: Fix docs bc v4 doesnt work
2025-06-06 07:17:12 +02:00

28 lines
673 B
YAML

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@v3
- name: LaTeX compile
working-directory: ${{ env.DIR }}
run: latexmk -pdf -xelatex ${{ env.FILE }}
- name: Upload artifacts
uses: https://git.kjan.de/actions/upload-artifact@v4
with:
name: Doku
path: docs/projektdokumentation.pdf