Skip to content

fix: enhance clarity and engagement in wrap-up content #20

fix: enhance clarity and engagement in wrap-up content

fix: enhance clarity and engagement in wrap-up content #20

Workflow file for this run

name: Deploy site to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install MkDocs and theme
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Build MkDocs site
run: mkdocs build --site-dir site
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./site
publish_branch: gh-pages
keep_files: false
github_token: ${{ secrets.GITHUB_TOKEN }}