Skip to content

fixed em dash issue #26

fixed em dash issue

fixed em dash issue #26

Workflow file for this run

name: Deploy Python Buddy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed for git-revision-date plugin if added later
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install mkdocs-material
- name: Build and deploy
run: mkdocs gh-deploy --force