Skip to content

V2.0.0 Release of openapi-python-generator #33

V2.0.0 Release of openapi-python-generator

V2.0.0 Release of openapi-python-generator #33

Workflow file for this run

# .github/workflows/release.yml
name: Release
on:
release:
types: [published]
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
architecture: x64
- run: pip install poetry==1.3.1
- run: poetry build
- run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}