Compare commits
6 commits
e02f7357f0
...
761a527ef0
Author | SHA1 | Date | |
---|---|---|---|
761a527ef0 |
|||
17774fcdb2 | |||
790eeeb145 |
|||
0b39eacc33 |
|||
04bdb89a93 |
|||
b583eedd75 |
3 changed files with 1384 additions and 0 deletions
|
@ -12,3 +12,8 @@ ci:
|
|||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- ".gitea/**"
|
||||
|
||||
docs:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- "docs/**"
|
28
.gitea/workflows/docs.yml
Normal file
28
.gitea/workflows/docs.yml
Normal 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
|
1351
docs/projektdokumentation.tex
Normal file
1351
docs/projektdokumentation.tex
Normal file
File diff suppressed because it is too large
Load diff
Reference in a new issue