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 }}