Skip to content

Commit

Permalink
pypi release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
klamann committed Oct 15, 2023
1 parent 958a63a commit 2def5a2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pypi-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: pypi-prod

# will be triggered when a new release is published (draft releases are ignored)
on:
release:
types: [ published ]

jobs:
release:
name: Deploy on PyPI
runs-on: ubuntu-latest
steps:
# make use of python & poetry
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Poetry
run: pip install poetry
# build wheel and sdist
- name: Build Wheel
run: poetry build
# publish on PyPI (productive environment)
- name: Publish Package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 2def5a2

Please sign in to comment.