Commit 0d02153
committed
Fix container jobs: use relative paths for artifact upload
Container jobs using `container:` directive have a "Split-Brain"
issue where shell steps run inside the container (/__w/...) but
Node.js actions like upload-artifact run on the host (/home/runner/...).
- Change wheels-docker.yml to use relative path: wheelhouse/
- Change wheels-arm64.yml to use relative path for consistency
- Add detailed comments explaining the host/container path mismatch
- Remove the now-unnecessary container-workspace step
Relative paths work in both contexts because GitHub guarantees
the CWD is set to workspace root for both container and host.
Note: This work was completed with AI assistance (Claude Code).1 parent 17d863c commit 0d02153
2 files changed
+36
-15
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
420 | 420 | | |
421 | 421 | | |
422 | 422 | | |
| 423 | + | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
| 428 | + | |
| 429 | + | |
| 430 | + | |
| 431 | + | |
423 | 432 | | |
424 | 433 | | |
425 | 434 | | |
426 | 435 | | |
427 | | - | |
| 436 | + | |
428 | 437 | | |
429 | 438 | | |
430 | 439 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
475 | 475 | | |
476 | 476 | | |
477 | 477 | | |
478 | | - | |
479 | | - | |
480 | | - | |
481 | | - | |
482 | | - | |
483 | | - | |
484 | | - | |
485 | | - | |
486 | | - | |
487 | | - | |
488 | | - | |
489 | | - | |
490 | | - | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
491 | 503 | | |
492 | 504 | | |
493 | 505 | | |
494 | | - | |
| 506 | + | |
495 | 507 | | |
496 | 508 | | |
497 | 509 | | |
0 commit comments