Skip to content

Commit 06be178

Browse files
committed
Update download-artifact to changes in upload
1 parent e1f8bed commit 06be178

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,17 @@ jobs:
3737

3838
- name: Download all artifacts
3939
uses: actions/download-artifact@v4
40+
with:
41+
path: pygame-wheels
42+
merge-multiple: true
4043

4144
- name: Download manylinux-aarch64 artifacts from CircleCI
4245
continue-on-error: true # incase things don't work here, can manually handle it
4346
run: >
4447
python3 buildconfig/ci/circleci/pull_circleci_artifacts.py
4548
${{ secrets.CCI_TOKEN }}
4649
${{ needs.manylinux-aarch64.outputs.pipeline_id }}
47-
pygame-wheels-manylinux
50+
pygame-wheels
4851
4952
# Strips 'release/' from the ref_name, this helps us access the version
5053
# name as 'steps.ver.outputs.VER'
@@ -57,7 +60,7 @@ jobs:
5760
with:
5861
draft: true
5962
prerelease: ${{ contains(steps.ver.outputs.VER, 'dev') }}
60-
files: pygame-wheels-*/*
63+
files: pygame-wheels/*
6164
name: '${{ steps.ver.outputs.VER }} - {TODO put a title here} [DRAFTED BY CI]'
6265
tag_name: ${{ steps.ver.outputs.VER }}
6366
target_commitish: ${{ github.ref_name }}

0 commit comments

Comments
 (0)