Skip to content

Commit 2717304

Browse files
fix Quarkus MODE input in prototypes
1 parent ac49811 commit 2717304

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

java-app/build-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
TAG_NAME: ${{ github.ref_name }}
3333
IMAGE_VERSION: ${{needs.define-variables.outputs.output1}}
34-
JVM: true
34+
# JVM: false # Optional - Default true - Enable this input variable if you need your Quarkus app to be compiled in JVM_MODE
3535
# Use the "secrets" keyword to pass named secrets.
3636
secrets:
3737
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}

java-app/release-candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
# environment: development
2424
uses: andreabattaglia/reusable-workflows/.github/workflows/release-candidate.yml@main
2525
# To pass named inputs to a called workflow, use the "with" keyword in a job.
26-
with:
27-
JVM: true
26+
# with:
27+
# JVM: false # Optional - Default true - Enable this input variable if you need your Quarkus app to be compiled in JVM_MODE
2828
# Use the "secrets" keyword to pass named secrets.
2929
secrets:
3030
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}

java-app/snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
# environment: development
2828
uses: qiot-project/qiot-ubi-all-reusable-workflows/.github/workflows/app-snapshot.yml@main
2929
# To pass named inputs to a called workflow, use the "with" keyword in a job.
30-
with:
31-
JVM: true
30+
# with:
31+
# JVM: false # Optional - Default true - Enable this input variable if you need your Quarkus app to be compiled in JVM_MODE
3232
# Use the "secrets" keyword to pass named secrets.
3333
secrets:
3434
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}

java-app/test-feature.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
call-test-feature-build:
3838
# environment: development
3939
uses: andreabattaglia/reusable-workflows/.github/workflows/test-feature.yml@main
40+
# To pass named inputs to a called workflow, use the "with" keyword in a job.
41+
# with:
42+
# JVM: false # Optional - Default true - Enable this input variable if you need your Quarkus app to be compiled in JVM_MODE
4043
# Use the "secrets" keyword to pass named secrets.
4144
secrets:
4245
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}

0 commit comments

Comments
 (0)