Runner4
This commit is contained in:
parent
f5113e2cf8
commit
2cf3717cf7
8
.github/workflows/build-java-app.yml
vendored
8
.github/workflows/build-java-app.yml
vendored
@ -9,9 +9,17 @@ on:
|
||||
dockerTag:
|
||||
required: true
|
||||
type: string
|
||||
enabled:
|
||||
required: true
|
||||
type: boolean
|
||||
shouldBuild:
|
||||
required: true
|
||||
type: boolean
|
||||
|
||||
|
||||
jobs:
|
||||
build-java:
|
||||
if: ${{ inputs.enabled && inputs.shouldBuild }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
8
.github/workflows/build-python-app.yml
vendored
8
.github/workflows/build-python-app.yml
vendored
@ -9,9 +9,17 @@ on:
|
||||
dockerTag:
|
||||
required: true
|
||||
type: string
|
||||
enabled:
|
||||
required: true
|
||||
type: boolean
|
||||
shouldBuild:
|
||||
required: true
|
||||
type: boolean
|
||||
|
||||
|
||||
jobs:
|
||||
build-python:
|
||||
if: ${{ inputs.enabled && inputs.shouldBuild }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user