use a more resourced runner for production builds (#2322)

This commit is contained in:
Aiden McClelland
2023-06-26 10:27:11 -06:00
committed by GitHub
parent e577434fe6
commit bffe1ccb3d

View File

@@ -33,7 +33,7 @@ jobs:
matrix:
platform:
[x86_64, x86_64-nonfree, aarch64, aarch64-nonfree, raspberrypi]
runs-on: ubuntu-22.04
runs-on: '${{ fromJson(''["ubuntu-22.04", "fatboi"]'')[github.event.inputs.environment == ''<NONE>''] }}'
steps:
- uses: actions/checkout@v3
with:
@@ -96,7 +96,7 @@ jobs:
matrix:
platform:
[x86_64, x86_64-nonfree, aarch64, aarch64-nonfree, raspberrypi]
runs-on: ubuntu-22.04
runs-on: '${{ fromJson(''["ubuntu-22.04", "fatboi"]'')[github.event.inputs.environment == ''<NONE>''] }}'
needs: [dpkg]
steps:
- uses: actions/checkout@v3
@@ -146,7 +146,7 @@ jobs:
image:
name: Build image
runs-on: ubuntu-22.04
runs-on: '${{ fromJson(''["ubuntu-22.04", "fatboi"]'')[github.event.inputs.environment == ''<NONE>''] }}'
timeout-minutes: 60
needs: [iso]
steps: