Paul Zinselmeyer
072153c6ac
Some checks failed
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (push) Has been cancelled
22 lines
584 B
YAML
22 lines
584 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: DeterminateSystems/nix-installer-action@main
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
|
- run: "nix build .#\"${{ matrix.assignment }}\""
|
|
- uses: christopherhx/gitea-download-artifact@v4
|
|
with:
|
|
name: "${{ matrix.assignment }}"
|
|
path: result/abgabe.pdf
|