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: dockerTag:
required: true required: true
type: string type: string
enabled:
required: true
type: boolean
shouldBuild:
required: true
type: boolean
jobs: jobs:
build-java: build-java:
if: ${{ inputs.enabled && inputs.shouldBuild }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@ -9,9 +9,17 @@ on:
dockerTag: dockerTag:
required: true required: true
type: string type: string
enabled:
required: true
type: boolean
shouldBuild:
required: true
type: boolean
jobs: jobs:
build-python: build-python:
if: ${{ inputs.enabled && inputs.shouldBuild }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: