chore: sync progress #17
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 PDF | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.11 | |
- name: Install Jupyter Notebook and Pandoc | |
run: | | |
pip install notebook 'nbconvert[webpdf]' | |
- name: Run build.sh | |
run: ./build.sh | |
- name: Upload Build Folder to Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: PDF & Markdown | |
path: ./build |