Skip to content

Commit 0a16437

Browse files
committed
Fiz wheel artifacts to upload correctly
1 parent 2e08695 commit 0a16437

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,6 @@ jobs:
169169

170170
- uses: actions/upload-artifact@v3
171171
with:
172-
name: pygame-wheels
172+
name: pygame-wheels-macos
173173
path: ./wheelhouse/*.whl
174174

.github/workflows/build-manylinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,6 @@ jobs:
124124
- name: Upload dist
125125
uses: actions/upload-artifact@v3
126126
with:
127-
name: pygame-manylinux-wheels
127+
name: pygame-wheels-manylinux
128128
path: ./wheelhouse/*.whl
129129

.github/workflows/build-ubuntu-sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ jobs:
8888
if: matrix.os == 'ubuntu-20.04' # upload sdist only once
8989
uses: actions/upload-artifact@v3
9090
with:
91-
name: pygame-sdist
91+
name: pygame-wheels-sdist
9292
path: dist/*.tar.gz
9393

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,5 @@ jobs:
163163
164164
- uses: actions/upload-artifact@v3
165165
with:
166-
name: pygame-wheels
166+
name: pygame-wheels-windows
167167
path: ./wheelhouse/*.whl

.github/workflows/release-gh-draft.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525

2626
- name: Download all artifacts
2727
uses: actions/download-artifact@v3
28-
with:
29-
path: dist
3028

3129
# Strips 'release/' from the ref_name, this helps us access the version
3230
# name as 'steps.ver.outputs.VER'
@@ -39,7 +37,7 @@ jobs:
3937
with:
4038
draft: true
4139
prerelease: ${{ contains(steps.ver.outputs.VER, 'dev') }}
42-
files: dist/*
40+
files: pygame-wheels-*/*
4341
name: '${{ steps.ver.outputs.VER }} - {TODO put a title here} [DRAFTED BY CI]'
4442
tag_name: ${{ steps.ver.outputs.VER }}
4543
target_commitish: ${{ github.ref_name }}

0 commit comments

Comments
 (0)