[QI2-881] Add oidc to the openapi generated docmumentation #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Python 🐍 distributions 📦 to PyPI | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
publish: | |
name: Publish Python 🐍 distributions 📦 to PyPI | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.7" | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v3 | |
- name: Version poetry package | |
run: poetry version "${{ github.ref_name }}" | |
- name: Build poetry package | |
run: poetry build | |
- name: Publish distribution 📦 to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: "Release ${{ github.ref_name }}" |