diff --git a/.github/workflows/bake.yml b/.github/workflows/bake.yml index 1bd630b..ba2ca7e 100644 --- a/.github/workflows/bake.yml +++ b/.github/workflows/bake.yml @@ -409,7 +409,7 @@ jobs: includes.push({ index: index, platform: platform, - runner: runner === 'auto' ? ((!privateRepo && platform.startsWith('linux/arm')) ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner + runner: runner === 'auto' ? (platform.startsWith('linux/arm') ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner }); }); } diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 12a1d54..4d4ff39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -311,7 +311,7 @@ jobs: includes.push({ index: index, platform: platform, - runner: runner === 'auto' ? ((!privateRepo && platform.startsWith('linux/arm')) ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner + runner: runner === 'auto' ? (platform.startsWith('linux/arm') ? 'ubuntu-24.04-arm' : 'ubuntu-24.04') : runner }); }); }