Skip to content

Commit b2a574e

Browse files
author
Jeff Whitaker
authored
Merge pull request #1340 from ocefpaf/fix_download-artifact
fix download-artifact
2 parents 4a5161d + fd0b2b3 commit b2a574e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,11 @@ jobs:
191191
# upload to PyPI for every tag starting with 'v'
192192
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
193193
steps:
194-
- uses: actions/download-artifact@v3
194+
- uses: actions/download-artifact@v4
195195
with:
196-
name: pypi-artifacts
196+
pattern: pypi-artifacts*
197197
path: ${{ github.workspace }}/dist
198+
merge-multiple: true
198199

199200
- uses: pypa/gh-action-pypi-publish@release/v1
200201
with:

0 commit comments

Comments
 (0)