This commit is contained in:
Brage Skjønborg 2026-01-04 02:16:24 +01:00
parent f5113e2cf8
commit 2cf3717cf7
2 changed files with 16 additions and 0 deletions

View File

@ -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:

View File

@ -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: