We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ec2ff51 + 027cb48 commit 5d80e13Copy full SHA for 5d80e13
.github/workflows/pypi-release.yml
@@ -3,24 +3,24 @@ name: "PyPI releases"
3
on: release
4
5
jobs:
6
- build_sdist:
7
- name: Build Python source distribution
+ build_distributions:
+ name: Build distributions
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v5
11
12
- - name: Build sdist
13
- run: pipx run build --sdist
+ - name: Build distributions
+ run: pipx run build
14
15
- uses: actions/upload-artifact@v5
16
with:
17
- path: dist/*.tar.gz
+ path: dist/*
18
19
pypi-publish:
20
name: Upload release to PyPI
21
if: github.event_name == 'release' && github.event.action == 'published'
22
needs:
23
- - build_sdist
+ - build_distributions
24
25
environment:
26
name: pypi
0 commit comments