Skip to content

Commit

Permalink
Specify runner group
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkinskurento committed Aug 29, 2024
1 parent 9678e97 commit ca7c0d0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/server-deploy-docker.child.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ on:
required: false
type: "boolean"
default: false
runnerGroup:
description: "runnerGroup: Set of runners where the workflow jobs should be run"
required: false
type: "string"
default: ""
secrets:
KURENTO_DOCKERHUB_USERNAME:
description: "Docker Hub username for pushing images"
Expand All @@ -40,7 +45,7 @@ defaults:

jobs:
build:
runs-on: ["self-hosted"]
runs-on: ["self-hosted", "${{ inputs.runnerGroup }}"]
strategy:
# Run each configuration sequentially.
# Docker login & build fails if ran multiple times in parallel.
Expand Down

0 comments on commit ca7c0d0

Please sign in to comment.