Skip to content

Commit f6126ba

Browse files
committed
Fix release workflow
1 parent af1af90 commit f6126ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Download artifacts
5353
uses: actions/download-artifact@v4
5454
with:
55-
path: src/python/dist
55+
path: dist
5656
pattern: artifact-*
5757
merge-multiple: true
5858
# to determine where to publish the package distribution to PyPI or TestPyPI
@@ -67,7 +67,7 @@ jobs:
6767
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
6868
with:
6969
repo_token: ${{ secrets.GITHUB_TOKEN }}
70-
file: src/python/dist/*
70+
file: dist/*
7171
tag: ${{ github.ref }}
7272
overwrite: true
7373
file_glob: true

0 commit comments

Comments
 (0)