Skip to content

Commit 45c48e2

Browse files
Merge remote-tracking branch 'template/main'
2 parents 00edc0c + d294528 commit 45c48e2

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:
@@ -78,5 +78,5 @@ jobs:
7878

7979
- uses: actions/upload-artifact@v4
8080
with:
81-
name: Universal Wheel (.whl)
82-
path: dist/*.whl
81+
name: Release Artifacts (sdist and wheel)
82+
path: dist/*

0 commit comments

Comments
 (0)