Skip to content

Commit 73c9df0

Browse files
authored
Merge pull request #2613 from pygame-community/dependabot/github_actions/actions/download-artifact-4
Bump actions/download-artifact from 3 to 4
2 parents b50eabf + 06be178 commit 73c9df0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,18 @@ jobs:
3636
- uses: actions/checkout@v4.1.1
3737

3838
- name: Download all artifacts
39-
uses: actions/download-artifact@v3
39+
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)