From 863ec834299ea2829a420b2b33923baf97c85a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Tue, 21 Dec 2021 22:13:35 +0100 Subject: [PATCH] Update build-kernel.yml --- .github/workflows/build-kernel.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-kernel.yml b/.github/workflows/build-kernel.yml index 5b87a786..ecb97f89 100644 --- a/.github/workflows/build-kernel.yml +++ b/.github/workflows/build-kernel.yml @@ -3,6 +3,9 @@ on: workflow_dispatch: workflow_call: inputs: + runner: + required: true + type: string uploading: type: string reference: @@ -25,7 +28,7 @@ on: jobs: Prepare: - runs-on: small + runs-on: ${{ inputs.runner }} name: "Looking for changes" if: ${{ github.repository_owner == 'Armbian' }} outputs: @@ -125,7 +128,7 @@ jobs: GCC: needs: [ Prepare ] - runs-on: fast + runs-on: ${{ inputs.runner }} if: ${{ needs.Prepare.outputs.matrix != '[]' && needs.Prepare.outputs.matrix != '' }} timeout-minutes: 480 strategy: