We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1301c3 commit 201c699Copy full SHA for 201c699
1 file changed
.github/workflows/deploy.yml
@@ -11,6 +11,10 @@ on:
11
description: 'Custom run command for the Build and Deploy step (overrides default Maven command)'
12
required: false
13
type: string
14
+ runs_on:
15
+ description: 'Runner to use for the build job (defaults to ubuntu-latest)'
16
+ required: false
17
+ type: string
18
secrets:
19
ARTIFACTORY_USERNAME:
20
required: true
@@ -146,7 +150,7 @@ jobs:
146
150
build:
147
151
name: Build ${{ matrix.branch }} (JDK ${{ matrix.java-version }})
148
152
needs: setup
149
- runs-on: ubuntu-latest
153
+ runs-on: ${{ inputs.runs_on || 'ubuntu-latest' }}
154
timeout-minutes: 60
155
strategy:
156
fail-fast: false
0 commit comments