Skip to content

Commit 28208ee

Browse files
authored
Download Artifact pattern fix (#14)
* ci(workflows.publish): Fix download artifact action to use pattern instead of name, when attempting to glob. * ci(workflows.publish): Merge multiple artifacts during download action such that all wheels and sdist are available within dist/ folder.
1 parent 5b960d6 commit 28208ee

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/python-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ jobs:
7878
- name: Retrieve release distributions
7979
uses: actions/download-artifact@v4
8080
with:
81-
name: ci-*
81+
pattern: ci-*
8282
path: dist/
83+
merge-multiple: true
8384

8485
- name: Publish package
8586
uses: pypa/gh-action-pypi-publish@v1.13.0

0 commit comments

Comments
 (0)