Add Cold Flow procedure #311
Workflow file for this run
This file contains 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-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile all LaTeX documents | |
run: python3 scripts/compile-all-latex.py | |
- name: Rename files and move to single release folder | |
run: | | |
mkdir --parents release | |
python3 scripts/move-files.py | |
- name: Upload PDF files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: release/* |