Skip to content

Commit 312bb9c

Browse files
committed
modified pypi publish
1 parent 658c8b2 commit 312bb9c

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/python-publish.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,17 @@ jobs:
2626
with:
2727
python-version: "3.8"
2828

29-
- name: Install dependencies for building
30-
run: pip install build
31-
3229
- name: Build release distributions
33-
run: python -m build
34-
35-
- name: Debug dist directory
36-
run: ls -la dist/
30+
run: |
31+
# NOTE: put your own distribution build steps here.
32+
python -m pip install build
33+
python -m build
3734
35+
- name: Upload distributions
36+
uses: actions/upload-artifact@v4
37+
with:
38+
name: release-dists
39+
path: dist/
3840

3941
pypi-publish:
4042
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)