Skip to content

Commit 7cc1584

Browse files
committed
Adjust source location.
1 parent 73a0ddb commit 7cc1584

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: actions/upload-artifact@v4
2828
with:
29-
name: dist-sdist
29+
name: source
3030
path: dist/*.tar.gz
3131

3232

@@ -68,7 +68,7 @@ jobs:
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 }}

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ classifiers = [
1818
[project.urls]
1919
Homepage = "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

0 commit comments

Comments
 (0)