22 lines
500 B
YAML
22 lines
500 B
YAML
|
name: "Latex Build"
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
build-latex:
|
||
|
runs-on: debian-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
assignment: [
|
||
|
"Assignment 4 - Protokollsicherheit (Praxis)"
|
||
|
]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: cachix/install-nix-action@v27
|
||
|
- run: "nix build .#\"${{ matrix.assignment }}\""
|
||
|
- uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: "${{ matrix.assignment }}.pdf"
|
||
|
path: result/abgabe.pdf
|