Skip to content

Commit 2a9798d

Browse files
committed
Update actions/upload-artifact v1 to v4 in Windows workflow
1 parent be2ed18 commit 2a9798d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/basemap-for-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,16 +269,16 @@ jobs:
269269
name: Test package
270270
run: |
271271
cd ${{ env.PKGDIR }}
272-
$env:COVERAGE_FILE = ".coverage.${{ matrix.python-version }}"
272+
$env:COVERAGE_FILE = ".coverage.${{ matrix.arch }}.${{ matrix.python-version }}"
273273
python -m pytest `
274274
--cov="mpl_toolkits.basemap" --cov-report=term `
275275
--ignore=dist --ignore=build
276276
-
277277
name: Upload test artifacts
278-
uses: actions/upload-artifact@v1
278+
uses: actions/upload-artifact@v4
279279
with:
280-
name: test
281-
path: ${{ env.PKGDIR }}/.coverage.${{ matrix.python-version }}
280+
name: artifacts-test-${{ matrix.arch }}-${{ matrix.python-version }}
281+
path: ${{ env.PKGDIR }}/.coverage.${{ matrix.arch }}.${{ matrix.python-version }}
282282

283283
upload:
284284
strategy:

0 commit comments

Comments
 (0)