Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ jobs:
python -m build

- name: Upload distributions
# Make sure the artifact versions match
uses: actions/upload-artifact@v4
with:
# Name of the distribution (no idea why they don't make this clear)
name: pywebpush
path: dist/
path: dist/*.tar.gz

pypi-publish:
# Remember, matching strings need to be in single quotes.
Expand All @@ -55,7 +56,8 @@ jobs:

steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v8
# Make sure the artifact versions match
uses: actions/download-artifact@v4
with:
# Name of the distribution (no idea why they don't make this clear)
name: pywebpush
Expand All @@ -65,6 +67,6 @@ jobs:
ls -aFl dist/
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/
verbose: true
#with:
# packages-dir: dist/
# verbose: true