-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
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 }} |