We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af1af90 commit f6126baCopy full SHA for f6126ba
.github/workflows/publish.yaml
@@ -52,7 +52,7 @@ jobs:
52
- name: Download artifacts
53
uses: actions/download-artifact@v4
54
with:
55
- path: src/python/dist
+ path: dist
56
pattern: artifact-*
57
merge-multiple: true
58
# to determine where to publish the package distribution to PyPI or TestPyPI
@@ -67,7 +67,7 @@ jobs:
67
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
68
69
repo_token: ${{ secrets.GITHUB_TOKEN }}
70
- file: src/python/dist/*
+ file: dist/*
71
tag: ${{ github.ref }}
72
overwrite: true
73
file_glob: true
0 commit comments