Skip to content

feat: command to dump OpenAPI schema (#58) (#59) #32

feat: command to dump OpenAPI schema (#58) (#59)

feat: command to dump OpenAPI schema (#58) (#59) #32

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v2
id: release
with:
release-type: python
package-name: cada-prio
token: ${{ secrets.BOT_TOKEN }}
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
with:
lfs: 'true'
- name: Set up Python
if: ${{ steps.release.outputs.release_created }}
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Build package
if: ${{ steps.release.outputs.release_created }}
run: |
python -m pip install --upgrade pip
python setup.py sdist
- name: Publish to PyPI
if: ${{ steps.release.outputs.release_created }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}