Compare commits

..

1 Commits

Author SHA1 Message Date
f75573764b Refactor GitHub Actions workflow to install LaTeX dependencies and build document directly, updating artifact upload step
Some checks failed
Build LaTeX Document / build_latex (pull_request) Failing after 1m40s
2025-02-09 23:41:44 +01:00

View File

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