Systemsicherheit/.gitea/workflows/build-latex.yaml

23 lines
556 B
YAML
Raw Normal View History

2024-05-27 11:10:14 +02:00
name: "Latex Build"
on:
pull_request:
push:
workflow_dispatch:
jobs:
build-latex:
2024-06-09 18:56:16 +02:00
runs-on: nixos
2024-05-27 11:10:14 +02:00
strategy:
matrix:
assignment: [
"Assignment 4 - Protokollsicherheit (Praxis)",
2024-06-23 13:05:25 +02:00
"Assignment 5 - Software Security - Teil 1",
"Assignment 6 - Software Security - Teil 2"
2024-05-27 11:10:14 +02:00
]
steps:
- uses: actions/checkout@v3
- run: "nix build .#\"${{ matrix.assignment }}\""
- uses: actions/upload-artifact@v3
with:
name: "${{ matrix.assignment }}"
path: result/abgabe.pdf