Skip to content

Commit 8dcfa6b

Browse files
committed
feat(github): Allow to use custom runner from prj config
By default public runner will be used it can be overload with custom value, in: project settings / actions / secrets / RUNNER=private.. Origin: SiliconLabsSoftware/z-wave-engine-application-layer#73 Relate-to: SiliconLabsSoftware#100 Signed-off-by: Philippe Coval <[email protected]>
1 parent 2e96957 commit 8dcfa6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
env:
1616
project-name: z-wave-protocol-controller # Align to docker (lowercase)
17-
runs-on: ubuntu-22.04
17+
runs-on: ${{ vars.RUNNER || 'ubuntu-24.04' }}
1818
steps:
1919
# yamllint disable-line rule:line-length
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

0 commit comments

Comments
 (0)