Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b8254 commit e757261Copy full SHA for e757261
.github/workflows/nightlies.yml
@@ -32,7 +32,7 @@ jobs:
32
PROJECT_REPO="matplotlib/matplotlib"
33
BRANCH="main"
34
WORKFLOW_NAME="cibuildwheel.yml"
35
- ARTIFACT_NAME="wheels"
+ ARTIFACT_PATTERN="cibw-wheels-*"
36
37
gh run --repo "${PROJECT_REPO}" \
38
list --branch "${BRANCH}" \
@@ -52,10 +52,10 @@ jobs:
52
)
53
gh run --repo "${PROJECT_REPO}" view "${RUN_ID}"
54
55
- download "${RUN_ID}" --name "${ARTIFACT_NAME}"
+ download "${RUN_ID}" --pattern "${ARTIFACT_PATTERN}"
56
57
mkdir dist
58
- mv *.whl dist/
+ mv ${ARTIFACT_PATTERN}/*.whl dist/
59
ls -l dist/
60
61
- name: Upload wheels to Anaconda Cloud as nightlies
0 commit comments