update #1011
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: github pages | |
on: | |
push: | |
branches: | |
- main # Set a branch that will trigger a deployment | |
pull_request: | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: "5.2" | |
- name: Install Forester | |
run: | | |
git clone https://git.sr.ht/~jonsterling/ocaml-forester | |
cd ocaml-forester | |
git checkout 66bba7109d0bb7315c4e5ed503e6945830b7c0d6 | |
opam pin add -y . | |
- name: Setup TeX Live | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
packages: >- | |
scheme-medium | |
standalone | |
mlmodern | |
amsfonts | |
amsmath | |
zx-calculus | |
tikz-cd | |
l3packages | |
dvisvgm | |
pgf | |
etoolbox | |
mathtools | |
stmaryrd | |
newtx | |
newpx | |
xstring | |
fontaxes | |
kastrup | |
spath3 | |
xpatch | |
- name: Check `latex` version | |
run: latex --version | |
- name: Build with Forester | |
run: opam exec -- forester build forest.toml | |
- name: Setup upterm session | |
if: failure() | |
uses: lhotari/action-upterm@v1 | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./output | |
cname: www.jonmsterling.com |