Added a workflow for the documentation #1
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: 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 |