Add a pipeline file for Building the document

This commit is contained in:
2026-05-12 00:44:35 +02:00
parent 6636af70ed
commit 349e3c5be8
+24
View File
@@ -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 }}