File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 2626
2727 - uses : actions/upload-artifact@v4
2828 with :
29- name : dist-sdist
29+ name : source
3030 path : dist/*.tar.gz
3131
3232
6868 uses : actions/upload-artifact@v4
6969 with :
7070 path : wheelhouse/*.whl
71- name : dist- ${{ matrix.os }}
71+ name : ${{ matrix.wheel }}
7272
7373 release :
7474 name : Create a new release
@@ -82,10 +82,13 @@ jobs:
8282 - uses : actions/download-artifact@v4
8383 with :
8484 path : dist
85- pattern : dist-*
8685 merge-multiple : true
8786
88- - name : Create github release
87+ - run : |
88+ mkdir dist
89+ find artifacts -type f -exec mv {} dist \;
90+
91+ - name : Create a GitHub release
8992 run : gh release create --generate-notes dist/*
9093 env :
9194 GITHUB_TOKEN : ${{ github.token }}
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ classifiers = [
1818[project .urls ]
1919Homepage = " https://github.com/angr/pydemumble"
2020
21+ [tool .setuptools .packages .find ]
22+ where = [" src" ]
23+ exclude = [" .git" , " .github" ]
2124
2225[tool .scikit-build ]
2326# Protect the configuration against future changes in scikit-build-core
You can’t perform that action at this time.
0 commit comments