From 4450ef1407ac3ff664ebe67687dffaaad4241564 Mon Sep 17 00:00:00 2001 From: Dustin Kut Moy Cheung Date: Fri, 20 Feb 2026 10:34:48 -0500 Subject: [PATCH] Fix escape issue with maven snapshot and jib option --- .github/workflows/maven-snapshot.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/maven-snapshot.yml b/.github/workflows/maven-snapshot.yml index 96f25f4..26aabc9 100644 --- a/.github/workflows/maven-snapshot.yml +++ b/.github/workflows/maven-snapshot.yml @@ -71,8 +71,7 @@ jobs: - name: Deploy Snapshot # Only run for snapshot version and not for commits with released versions if: endsWith(steps.project-version.outputs.version, '-SNAPSHOT') - run: ${{ inputs.snapshot_deploy_command }} \ - ${{ inputs.quarkus_jib_image && '-Dquarkus.container-image.build=true' || '' }} + run: ${{ inputs.snapshot_deploy_command }} ${{ inputs.quarkus_jib_image && '-Dquarkus.container-image.build=true' || '' }} env: MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }} MAVEN_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}