Commit 5d528bd
committed
Fix container action to properly pass command input
The issue was using environment variable ${INPUT_RUN} instead of
GitHub Actions parameter ${{ inputs.run }}. This caused commands
to be empty in the Docker containers.
Fixed by:
- Reverting to direct parameter substitution ${{ inputs.run }}
- Removing debug code that was interfering with execution
- Keeping PYTHONUNBUFFERED=1 for proper output display
This should restore test output visibility in Linux Docker jobs.1 parent e33e314 commit 5d528bd
1 file changed
+3
-15
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | | - | |
25 | 23 | | |
26 | 24 | | |
27 | | - | |
| 25 | + | |
28 | 26 | | |
29 | 27 | | |
30 | 28 | | |
| |||
86 | 84 | | |
87 | 85 | | |
88 | 86 | | |
89 | | - | |
| 87 | + | |
90 | 88 | | |
91 | 89 | | |
92 | 90 | | |
| |||
102 | 100 | | |
103 | 101 | | |
104 | 102 | | |
105 | | - | |
106 | 103 | | |
107 | 104 | | |
108 | 105 | | |
| |||
115 | 112 | | |
116 | 113 | | |
117 | 114 | | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
| 115 | + | |
128 | 116 | | |
129 | 117 | | |
130 | 118 | | |
| |||
0 commit comments