Skip to content

Two side bars: project tree and table of contents. Table of Contents editable with drag-and-drop. Various fixes and documentation. #44

Two side bars: project tree and table of contents. Table of Contents editable with drag-and-drop. Various fixes and documentation.

Two side bars: project tree and table of contents. Table of Contents editable with drag-and-drop. Various fixes and documentation. #44

Workflow file for this run

name: StrictDoc Python Package Release
on:
release:
types: [created]
# pull_request:
# branches: [ "**" ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install Invoke and Tox
run: |
pip install invoke tox
- name: Build and test locally
run: |
invoke release-local
- name: Build and publish
run: |
invoke release --username ${{ secrets.PYPI_USERNAME }} --password ${{ secrets.PYPI_PASSWORD }}