Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#160) #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
- name: Set up Python 3.x | |
uses: actions/[email protected] | |
with: | |
python-version: "3.x" | |
- name: Install Poetry | |
uses: snok/[email protected] | |
- name: Install Package | |
run: poetry install | |
- name: Build and deploy docs | |
run: poetry run mkdocs gh-deploy --clean --strict --verbose --force |