Skip to content

Update mkdocsDeploy.yml #14

Update mkdocsDeploy.yml

Update mkdocsDeploy.yml #14

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main # Adjust if your primary branch differs
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material # Ensure all dependencies are listed
- name: Custom Deploy to GitHub Pages
run: |
mkdocs build --clean
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git fetch --depth=1 origin gh-pages
git checkout -B gh-pages
git add -f site/*
git commit -m 'Deploy MkDocs Site'
git push -u origin gh-pages --force