Skip to content

Add release notes 5.2.7 #117

Add release notes 5.2.7

Add release notes 5.2.7 #117

Workflow file for this run

name: Deploy main branch on gh-pages
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
architecture: x64
- name: Install requirements
run: python3 -m pip install -r requirements.txt
- name: setup git user
run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Deploy
run: python3 -m mkdocs gh-deploy --remote-branch gh-pages --force