File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 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
99on :
1010 workflow_dispatch :
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/*
You can’t perform that action at this time.
0 commit comments