Skip to content

Add possibility for different PyPI and package names #12

Add possibility for different PyPI and package names

Add possibility for different PyPI and package names #12

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install package
run: |
pip install .[dev]
- name: Build documentation
run: |
mkdocs build
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site