We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ab9d39 commit a3a5d7cCopy full SHA for a3a5d7c
1 file changed
.github/workflows/release.yaml
@@ -21,6 +21,19 @@ jobs:
21
uses: actions/setup-python@v5
22
with:
23
python-version: "3.x"
24
+ - name: Install pypa/build
25
+ run: >-
26
+ python3 -m
27
+ pip install
28
+ build
29
+ --user
30
+ - name: Build a binary wheel and a source tarball
31
+ run: python3 -m build
32
+ - name: Store the distribution packages
33
+ uses: actions/upload-artifact@v4
34
+ with:
35
+ name: python-package-distributions
36
+ path: dist/
37
38
publish-to-pypi:
39
name: >-
0 commit comments