Skip to content

docs: update settings.md #46

docs: update settings.md

docs: update settings.md #46

Workflow file for this run

name: publish
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
publish:
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore(release):')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@v7.34.6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_username: __token__
repository_password: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force