From 2b6858b993b4470d5eea71615d82899f78f41144 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Mon, 6 Feb 2023 21:23:05 +0100 Subject: [PATCH] build with github action --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e6fc13c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: 'build' + +on: + push: + +jobs: + create_tar: + name: build + runs-on: ubuntu-latest + + steps: + - name: Install inkscape texlive-latex-base texlive-latex-recommended texlive-pictures texlive-latex-extra texlive-lang-german + run: | + sudo apt update + sudo apt install -y inkscape texlive-latex-base texlive-latex-recommended texlive-pictures texlive-latex-extra texlive-lang-german + + - name: Checkout + uses: actions/checkout@v3 + + - name: build + run: make + + - name: Upload cryptoparty-intro.pdf + uses: actions/upload-artifact@v3 + with: + name: cryptoparty-intro + path: cryptoparty-intro.pdf