Skip to content

Commit d13aabe

Browse files
authored
feat: add OVERRIDE_RUNS_ON variables to control runners per repository
1 parent 99f80cd commit d13aabe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-docker-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
fail-fast: ${{ inputs.fail_fast }}
154154
matrix:
155155
component: ${{ fromJson(needs.get-flavors.outputs.result).components }}
156-
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
156+
runs-on: ${{ vars.OVERRIDE_BUILD_DOCKER_ARTIFACTS_RUNS_ON || inputs.runs_on || 'ubuntu-22.04' }}
157157
steps:
158158
- name: View flavor and component
159159
shell: bash

0 commit comments

Comments
 (0)