From 349e3c5be8dbe569253249d4ee7ee5a5e404208a Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 12 May 2026 00:44:35 +0200 Subject: [PATCH] Add a pipeline file for Building the document --- .gitea/workflows/pipelines.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/pipelines.yaml diff --git a/.gitea/workflows/pipelines.yaml b/.gitea/workflows/pipelines.yaml new file mode 100644 index 0000000..4fbc7a8 --- /dev/null +++ b/.gitea/workflows/pipelines.yaml @@ -0,0 +1,24 @@ +name: Build LaTex Document +run-name: ${{ gitea-actor }} is building LaTeX documents +on: + push: + branches: + - 'main' + +jobs: + Build: + runs-on: latex-project-amd64 + steps: + - name: Checking out the repository + uses: actions/checkout@v6 + - name: Building the PDF document + run: | + waf distclean + waf configure + waf build + - name: Release + uses: akkuman/gitea-release-action@v1 + with: + files: |- + build/*.pdf + name: Release ${{ gitea.run_id }}.${{ gitea.run_attempt }}