Fix typo (#266) #131
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 Cache | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
cache: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install Python Dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Install LaTeX dependencies | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get install -y \ | |
texlive-latex-recommended \ | |
texlive-latex-extra \ | |
texlive-fonts-recommended \ | |
texlive-fonts-extra \ | |
texlive-xetex \ | |
latexmk \ | |
xindy \ | |
texlive-luatex \ | |
dvipng \ | |
ghostscript \ | |
cm-super | |
- name: Set up Julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: 1.9 | |
- name: Install IJulia and Setup Project | |
shell: bash | |
run: | | |
julia -e 'using Pkg; Pkg.add("IJulia");' | |
julia --project=lectures --threads auto -e 'using Pkg; Pkg.instantiate();' | |
- name: Build HTML | |
shell: bash -l {0} | |
run: | | |
jb build lectures --path-output ./ | |
- name: Upload the "_build" folder (cache) | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build-cache | |
path: _build |