Skip to content

Fix latex rendering

Fix latex rendering #1

Workflow file for this run

name: Build and Deploy Jekyll Site
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
bundler-cache: true
- name: Configure git safe directory
run: git config --global --add safe.directory /github/workspace
- name: Install dependencies
run: |
bundle install
bundle update # Ensures gems are up to date
- name: Build Jekyll site
run: bundle exec jekyll build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site