Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/linux_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,11 @@ jobs:
if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then
# If the default execution path is followed then we should get a wheel in the dist/ folder
# attempt to just grab whatever is in there and scoop it all up
if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then
mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/"
fi
for wheel in dist/*.whl; do
if [[ -f "${wheel}" ]]; then
mv -v "${wheel}" "${RUNNER_ARTIFACT_DIR}/"
fi
done
if [[ -d "artifacts-to-be-uploaded" ]]; then
mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/"
fi
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/linux_job_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,11 @@ jobs:
if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then
# If the default execution path is followed then we should get a wheel in the dist/ folder
# attempt to just grab whatever is in there and scoop it all up
if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then
mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/"
fi
for wheel in dist/*.whl; do
if [[ -f "${wheel}" ]]; then
mv -v "${wheel}" "${RUNNER_ARTIFACT_DIR}/"
fi
done
if [[ -d "artifacts-to-be-uploaded" ]]; then
mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/"
fi
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/linux_job_v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,11 @@ jobs:
if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then
# If the default execution path is followed then we should get a wheel in the dist/ folder
# attempt to just grab whatever is in there and scoop it all up
if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then
mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/"
fi
for wheel in dist/*.whl; do
if [[ -f "${wheel}" ]]; then
mv -v "${wheel}" "${RUNNER_ARTIFACT_DIR}/"
fi
done
if [[ -d "artifacts-to-be-uploaded" ]]; then
mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/"
fi
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/macos_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,11 @@ jobs:
run: |
# If the default execution path is followed then we should get a wheel in the dist/ folder
# attempt to just grab whatever is in there and scoop it all up
if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then
mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/"
fi
for wheel in dist/*.whl; do
if [[ -f "${wheel}" ]]; then
mv -v "${wheel}" "${RUNNER_ARTIFACT_DIR}/"
fi
done
if [[ -d "artifacts-to-be-uploaded" ]]; then
mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/"
fi
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/windows_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,11 @@ jobs:
run: |
# If the default execution path is followed then we should get a wheel in the dist/ folder
# attempt to just grab whatever is in there and scoop it all up
if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then
mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/"
fi
for wheel in dist/*.whl; do
if [[ -f "${wheel}" ]]; then
mv -v "${wheel}" "${RUNNER_ARTIFACT_DIR}/"
fi
done
if [[ -d "artifacts-to-be-uploaded" ]]; then
mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/"
fi
Expand Down
Loading