diff --git a/.gitea/workflows/create-presentation.yml b/.gitea/workflows/create-presentation.yml index 7e80644..fc0104f 100644 --- a/.gitea/workflows/create-presentation.yml +++ b/.gitea/workflows/create-presentation.yml @@ -8,6 +8,7 @@ jobs: build: name: Build the debian package runs-on: ubuntu-latest + steps: - name: "Git clone" run: git clone ${{ gitea.server_url }}/${{ gitea.repository }}.git . @@ -15,10 +16,9 @@ jobs: run: git checkout "${{ gitea.sha }}" - name: "Submodules auschecken" run: git submodule update --init - - - name: "Install dependencies" - run: sudo apt-get update && sudo apt-get install pandoc nodejs texlive-latex-full -y - + - uses: docker://pandoc/core:3.8 + with: + args: "--help" # gets appended to pandoc command - name: "Build .deb" run: cd ./Defensio && ./pandoc.sh - name: "Create release" diff --git a/Defensio/00_preamble.tex b/Defensio/00_preamble.tex index bd3918f..10c417b 100644 --- a/Defensio/00_preamble.tex +++ b/Defensio/00_preamble.tex @@ -67,7 +67,7 @@ \title[AlumniHub]{AlumniHub} \subtitle{Web-Entwicklung für den Absolventenverein} -\author{Konstantin Hintermayer \\ Adam Gaiswinkler \\ Florian Edlmayer} +\author{Konstantin Hintermayer \\ Florian Edlmayer \\ Adam Gaiswinkler} \email{} \institute{Schulzentrum HTL HAK Ungargasse} \uni{Schulzentrum HTL HAK Ungargasse} diff --git a/Defensio/04_Praesentation_Florian_Edlmayer.md b/Defensio/03_Praesentation_Florian_Edlmayer.md similarity index 100% rename from Defensio/04_Praesentation_Florian_Edlmayer.md rename to Defensio/03_Praesentation_Florian_Edlmayer.md diff --git a/Defensio/03_Praesentation_Adam_Gaiswinkler.md b/Defensio/04_Praesentation_Adam_Gaiswinkler.md similarity index 100% rename from Defensio/03_Praesentation_Adam_Gaiswinkler.md rename to Defensio/04_Praesentation_Adam_Gaiswinkler.md diff --git a/Defensio/defensio.pdf b/Defensio/defensio.pdf new file mode 100644 index 0000000..cf612b4 Binary files /dev/null and b/Defensio/defensio.pdf differ diff --git a/Defensio/libs/awesome-beamer b/Defensio/libs/awesome-beamer index 8be8423..e282972 160000 --- a/Defensio/libs/awesome-beamer +++ b/Defensio/libs/awesome-beamer @@ -1 +1 @@ -Subproject commit 8be8423ee5d5213a768e3845366c2df1262c3259 +Subproject commit e282972eb1ca174f0a711db69c372b4c4bc9eb18 diff --git a/Defensio/pandoc.sh b/Defensio/pandoc.sh index 99bb455..34664f7 100755 --- a/Defensio/pandoc.sh +++ b/Defensio/pandoc.sh @@ -3,8 +3,8 @@ export TEXINPUTS=".:./libs/awesome-beamer/:./libs/smile/:$TEXINPUTS" pandoc \ 01_Praesentation_Allgemein.md \ 02_Praesentation_Konstantin_Hintermayer.md \ - 03_Praesentation_Adam_Gaiswinkler.md \ - 04_Praesentation_Florian_Edlmayer.md \ + 03_Praesentation_Florian_Edlmayer.md \ + 04_Praesentation_Adam_Gaiswinkler.md \ -t beamer \ --template 00_preamble.tex \ --pdf-engine=pdflatex \