From 84739cc1a18b547822bcdf01f336e0f8d43b0f9f Mon Sep 17 00:00:00 2001 From: Matte23 Date: Tue, 4 Jun 2024 11:10:07 +0200 Subject: [PATCH] feat(workflow): Add build workflow --- .gitea/build.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/build.yaml diff --git a/.gitea/build.yaml b/.gitea/build.yaml new file mode 100644 index 0000000..061c3fa --- /dev/null +++ b/.gitea/build.yaml @@ -0,0 +1,20 @@ +name: Build document +run-name: Build from ${{ gitea.actor }} 🚀 +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Compile LaTeX document + uses: dante-ev/latex-action@latest + with: + root_file: ProgettareSistemi.tex + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: ProgettareSistemi.pdf + path: ./ProgettareSistemi.pdf