Skip to content

trying to trigger workflow #13

trying to trigger workflow

trying to trigger workflow #13

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main # Trigger the workflow on pushes to the main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Dependencies
run: pip install mkdocs mkdocs-material mkdocstrings[python]
- name: Build Documentation
run: mkdocs gh-deploy --force
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site