also, for an overview, generadte a pdf with all submissions #76
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: Compile Paper | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| - name: Install Python requirements | |
| run: pip install -r requirements.txt | |
| - name: Create contributor snippet | |
| run: python contributors.py | |
| - uses: xu-cheng/latex-action@v3 | |
| with: | |
| root_file: paper.tex | |
| - uses: actions/upload-artifact@v3 | |
| with: | |
| name: Paper PDF | |
| path: paper.pdf |