Skip to content

bugfix: project-level config file: correct configuration of server port #43

bugfix: project-level config file: correct configuration of server port

bugfix: project-level config file: correct configuration of server port #43

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@v2
- 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 }}