Skip to content

Removed Jekyll config and disabled Jekyll processing on GitHub Pages #1

Removed Jekyll config and disabled Jekyll processing on GitHub Pages

Removed Jekyll config and disabled Jekyll processing on GitHub Pages #1

Workflow file for this run

name: Deploy MkDocs site to GitHub Pages
on:
push:
branches:
- main # or whatever branch you're using
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install MkDocs and dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
- name: Build the site
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site