Skip to content

Added a workflow for the documentation #1

Added a workflow for the documentation

Added a workflow for the documentation #1

Workflow file for this run

name: Deploy LaTeX documentation
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up TeX Live
run: |
sudo apt-get update
sudo apt-get install -y texlive texlive-latex-extra texlive-fonts-recommended texlive-xetex texlive-science texlive-fonts-extra
- name: Compile LaTeX
run: |
mkdir -p output_directory
cd doc
pdflatex main.tex
bibtex main
pdflatex main.tex
pdflatex main.tex
cp main.pdf ../output_directory
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output_directory
destination_dir: pdf