Skip to content

Remove font path

Remove font path #15

Workflow file for this run

name: Build PDF
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build PDF with LuaLaTeX 🔧
uses: xu-cheng/latex-action@v2
with:
root_file: main.tex
latexmk_use_lualatex: true
- name: Upload PDF file
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: main.pdf
- name: Create output folder
run: mkdir -p out && mv main.pdf out/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: out
clean: true
single-commit: true
git-config-name: github-actions
git-config-email: github-actions@github.com