Skip to content

try to add auto menu generation #22

try to add auto menu generation

try to add auto menu generation #22

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
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: |
pip install mkdocs mkdocs-material
run: |

Check failure on line 24 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Deploy MkDocs

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 24, Col: 7): 'run' is already defined
pip install mkdocs-awesome-pages-plugin
- name: Deploy to GitHub Pages
env:
GH_PAT: ${{ secrets.GH_PAT }}
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}.git
mkdocs gh-deploy --config-file site/mkdocs.yml --force