File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ jobs:
409409 includes.push({
410410 index: index,
411411 platform: platform,
412- runner: runner === 'auto' ? ((!privateRepo && platform.startsWith('linux/arm') ) ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner
412+ runner: runner === 'auto' ? (platform.startsWith('linux/arm') ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner
413413 });
414414 });
415415 }
Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ jobs:
311311 includes.push({
312312 index: index,
313313 platform: platform,
314- runner: runner === 'auto' ? ((!privateRepo && platform.startsWith('linux/arm') ) ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner
314+ runner: runner === 'auto' ? (platform.startsWith('linux/arm') ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner
315315 });
316316 });
317317 }
You can’t perform that action at this time.
0 commit comments