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-Marlon Leibl 20076d8fe0
Some checks failed
Build docs / build-docs (push) Failing after 30s
Merge pull request 'chore(deps): update https://git.kjan.de/actions/upload-artifact action to v4' (!289) from renovate/major-github-artifact-actions into main
Reviewed-on: #289
Reviewed-by: Jan-Marlon Leibl <jleibl@proton.me>
2025-06-04 11:08:23 +00: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@v4
- 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