Skip to content

Commit

Permalink
Update github-actions to publish package
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-Friedrich committed Nov 15, 2024
1 parent e43c381 commit 372fec3
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,27 @@ on:
- '*' # Push events to every tag not containing /

jobs:
build-n-publish:
build-and-publish:
name: Build and Publish to PyPI
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout git repository
uses: actions/checkout@v2
- name: Setup Python3.8
uses: actions/setup-python@v2
uses: actions/checkout@v4
# https://github.com/marketplace/actions/setup-python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Build
run: python setup.py sdist
python-version: "3.x"

# Build ####################################################################

# https://github.com/marketplace/actions/publish-python-poetry-package
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
# https://github.com/JRubics/poetry-publish/issues/39
uses: JRubics/poetry-publish@v2.0
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
# https://pypi.org/manage/account/token/
# https://github.com/<owner>/<repo>/settings/secrets/actions/new
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

0 comments on commit 372fec3

Please sign in to comment.