Skip to content

Commit 442837b

Browse files
Use unique name for artifact (#94)
* Use unique name for artifact * Use different artifact names
1 parent c6ed844 commit 442837b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/upload-artifact@v2
5454
with:
5555
path: ./wheelhouse/Wikipedia*.whl
56-
# name: wheel-${{ matrix.os }}-${{ matrix.python }}.whl
56+
name: wikipedia-api-${{ matrix.os }}-${{ matrix.python }}.whl
5757

5858
build_sdist:
5959
name: Build source distribution
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/upload-artifact@v2
7373
with:
7474
path: dist/Wikipedia*.tar.gz
75-
# name: sdist.tar.gz
75+
name: wikipedia-api-sdist.tar.gz
7676

7777
upload_pypi:
7878
needs: [build_wheels, build_sdist]
@@ -84,7 +84,7 @@ jobs:
8484
steps:
8585
- uses: actions/download-artifact@v4
8686
with:
87-
name: artifact
87+
name: wikipedia-api-*
8888
path: dist
8989

9090
- uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)