Paul Zinselmeyer
86f7189ae3
Some checks failed
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (push) Failing after 14s
21 lines
500 B
YAML
21 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
|