Skip to content

bump version

bump version #18

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "docs/**.md"
- "mkdocs.yml"
- ".github/workflows/documentation.yml"
- "README.md"
- "CHANGELOG.md"
- "src/**.py"
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Task
uses: arduino/setup-task@v2
with:
version: "3.x"
- run: task docs-setup
- run: |
rm -rf docs/{index.md,changelog.md}
cp README.md docs/index.md
cp CHANGELOG.md docs/changelog.md
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Publish docs
run: mkdocs gh-deploy