Skip to content

Commit 3f94e78

Browse files
authored
Merge pull request matplotlib#27643 from QuLogic/fix-nightly-upload
ci: Update nightly upload for artifacts v4
2 parents d3d3eab + e757261 commit 3f94e78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/nightlies.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
PROJECT_REPO="matplotlib/matplotlib"
3333
BRANCH="main"
3434
WORKFLOW_NAME="cibuildwheel.yml"
35-
ARTIFACT_NAME="wheels"
35+
ARTIFACT_PATTERN="cibw-wheels-*"
3636
3737
gh run --repo "${PROJECT_REPO}" \
3838
list --branch "${BRANCH}" \
@@ -52,10 +52,10 @@ jobs:
5252
)
5353
gh run --repo "${PROJECT_REPO}" view "${RUN_ID}"
5454
gh run --repo "${PROJECT_REPO}" \
55-
download "${RUN_ID}" --name "${ARTIFACT_NAME}"
55+
download "${RUN_ID}" --pattern "${ARTIFACT_PATTERN}"
5656
5757
mkdir dist
58-
mv *.whl dist/
58+
mv ${ARTIFACT_PATTERN}/*.whl dist/
5959
ls -l dist/
6060
6161
- name: Upload wheels to Anaconda Cloud as nightlies

0 commit comments

Comments
 (0)