There was an error while loading. Please reload this page.
1 parent 1842678 commit 8b74b4fCopy full SHA for 8b74b4f
1 file changed
.github/workflows/TestPyPI_Upload.yml
@@ -20,6 +20,19 @@ jobs:
20
uses: actions/setup-python@v5
21
with:
22
python-version: "3.x"
23
+ - name: Install pypa/build
24
+ run: >-
25
+ python3 -m
26
+ pip install
27
+ build
28
+ --user
29
+ - name: Build a binary wheel and a source tarball
30
+ run: python3 -m build
31
+ - name: Store the distribution packages
32
+ uses: actions/upload-artifact@v4
33
+ with:
34
+ name: python-package-distributions
35
+ path: dist/
36
37
publish-to-testpypi:
38
name: Publish Python 🐍 distribution 📦 to TestPyPI
0 commit comments