Skip to content

chore: temp image path fix, need a config for this #16

chore: temp image path fix, need a config for this

chore: temp image path fix, need a config for this #16

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material mkdocs-awesome-pages-plugin mkdocs-macros-plugin pymdown-extensions
- name: Deploy to gh pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mkdocs gh-deploy --force