Compare commits

..

1 Commits

Author SHA1 Message Date
32b5a0a6d0 Refactor GitHub Actions workflow to install LaTeX dependencies and build document directly, updating artifact upload step
All checks were successful
Build LaTeX Document / build_latex (pull_request) Successful in 1m49s
2025-02-10 00:03:40 +01:00

View File

@@ -32,7 +32,14 @@ jobs:
run: |
pdflatex -interaction=nonstopmode -halt-on-error ${{ env.TEX_NAME }} || (cat /root/.miktex/texmfs/data/miktex/log/pdflatex.log && exit 1)
- name: Upload PDF artifact
uses: actions/upload-artifact@v4
- name: Check for PDF artifact
run: file ${{ env.PDF_NAME }} || grep -q ' PDF '
- name: Release PDF artifact
uses: softprops/action-gh-release@v2
with:
path: ${{ env.PDF_NAME }}
files: ${{ env.PDF_NAME }}
#token: ${{ secrets.GITHUB_TOKEN }}
tag_name: latest
body: |
PDF document built from LaTeX source.