Skip to content

Commit d294528

Browse files
Include sdist release artifacts
1 parent 1414e6c commit d294528

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Action builds a universal (Win32/Win64/macOS-universal/Linux-x64) Python wheel
2-
# from the source code, using Hatchling, and uploads it as an artifact. This wheel
3-
# can then be distributed with new releases. The action is triggered by pushes into `main`
2+
# from the source code, using Hatchling, and uploads it as an artifact. An sdist (.tar.gz) is
3+
# also uploaded, which includes all platform shared library files. These artifacts should be
4+
# used when creating new releases on PyPI and GitHub. The action is triggered by pushes into `main`
45
# or pull_requests into `main` or `dev` (for testing). To aid in releases, the workflow is
5-
# also triggered when new SemVer tags are created. This action handles downloading all
6-
# shared library files and including them in the resulting wheel.
7-
name: Build Wheels
6+
# also triggered when new SemVer tags are created.
7+
name: Build Release Artifacts
88

99
on:
1010
workflow_dispatch:
@@ -82,5 +82,5 @@ jobs:
8282

8383
- uses: actions/upload-artifact@v4
8484
with:
85-
name: Universal Wheel (.whl)
86-
path: dist/*.whl
85+
name: Release Artifacts (sdist and wheel)
86+
path: dist/*

0 commit comments

Comments
 (0)