MyST Markdown Refactor #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build LaTeX Document | |
| on: [push,pull_request] | |
| jobs: | |
| build-latex: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v5 | |
| - name: Set up LaTeX packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install texlive texlive-publishers texlive-science latexmk | |
| - name: Setup Pixi | |
| uses: prefix-dev/[email protected] | |
| with: | |
| pixi-version: latest | |
| - name: Build PDF | |
| run: pixi run build-arxiv | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: arxiv-pdf-outputs | |
| path: | | |
| exports/ | |
| retention-days: 30 |