Skip to content

Commit 4a3e6b6

Browse files
fix release gh action
1 parent 929899d commit 4a3e6b6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
- uses: actions/upload-artifact@v7
4747
with:
4848
name: wheels
49-
path: dist/*.whl
49+
path: |
50+
dist/core/*.whl
51+
dist/bundle/*.whl
5052
5153
github-release:
5254
needs: build
@@ -63,6 +65,6 @@ jobs:
6365
- uses: softprops/action-gh-release@v2.5.0
6466
with:
6567
tag_name: ${{ github.event.inputs.tag || github.ref_name }}
66-
files: dist/*.whl
68+
files: dist/**/*.whl
6769
generate_release_notes: true
6870

0 commit comments

Comments
 (0)