Skip to content

Commit d0ed7a5

Browse files
committed
Merge pull request #260 from CGAL/dependabot/github_actions/actions/download-artifact-4
Bump actions/download-artifact from 3 to 4
2 parents 27080d9 + f76691d commit d0ed7a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
4343
- uses: actions/upload-artifact@v4
4444
with:
45+
name: sdist
4546
path: dist/*.tar.gz
4647

4748
build-and-test-wheels:
@@ -199,17 +200,18 @@ jobs:
199200
- uses: actions/upload-artifact@v4
200201
if: endsWith(matrix.cgal_branch, env.LATEST_CGAL_VERSION)
201202
with:
203+
name: wheel-${{ matrix.os }}-${{ matrix.cgal_branch }}-${{ matrix.python-version }}
202204
path: cgal-*.whl
203205

204206
upload:
205207
name: Upload to PyPI
206208
runs-on: ubuntu-latest
207209
needs: [sdist, build-and-test-wheels]
208210
steps:
209-
- uses: actions/download-artifact@v3
211+
- uses: actions/download-artifact@v4
210212
with:
211-
name: artifact
212213
path: dist
214+
merge-multiple: true
213215

214216
- name: upload to TestPyPI
215217
if: github.event_name == 'push' && github.ref_name == 'main'

0 commit comments

Comments
 (0)