Skip to content

add section attractors reachability #105

add section attractors reachability

add section attractors reachability #105

Workflow file for this run

name: github pages - mkdocs site
on:
push: # upon commit
branches:
- mkdocs
workflow_dispatch: # or with manual trigger
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
python-version: '3.11'
- name: python dependencies
run: |
pip install -r requirements.txt
- name: Build mkdocs site
run: mkdocs build --clean
- name: Deploy to github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
publish_branch: master