From c1c4b0a9eec14d0b5a2d7ed7212ff1f574c07c26 Mon Sep 17 00:00:00 2001 From: Marc Nuri Date: Tue, 16 Apr 2024 12:59:57 +0200 Subject: [PATCH] ci:fix: kube-api-test module released with Java 11 (yaml scalar) Signed-off-by: Marc Nuri --- .github/workflows/release-snapshots.yaml | 15 ++++++++------- .github/workflows/release.yaml | 15 ++++++++------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release-snapshots.yaml b/.github/workflows/release-snapshots.yaml index 34b474559a1..f706588cec3 100644 --- a/.github/workflows/release-snapshots.yaml +++ b/.github/workflows/release-snapshots.yaml @@ -89,13 +89,14 @@ jobs: gpg-private-key: ${{ secrets.SIGNINGKEY }} gpg-passphrase: SIGNINGPASSWORD - name: Build and release Java 11 modules - run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} \ - -pl "httpclient-jdk" \ - -pl "httpclient-jetty" \ - -pl "junit/kube-api-test" \ - -pl "junit/kube-api-test/core" \ - -pl "junit/kube-api-test/client-inject" \ - clean deploy + run: | + ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} \ + -pl "httpclient-jdk" \ + -pl "httpclient-jetty" \ + -pl "junit/kube-api-test" \ + -pl "junit/kube-api-test/core" \ + -pl "junit/kube-api-test/client-inject" \ + clean deploy - name: Build and release BOM run: | ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} clean sundr:generate-bom && diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f17d11656da..e7653761e8b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -98,13 +98,14 @@ jobs: gpg-private-key: ${{ secrets.SIGNINGKEY }} gpg-passphrase: SIGNINGPASSWORD - name: Build and release Java 11 modules - run: ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} \ - -pl "httpclient-jdk" \ - -pl "httpclient-jetty" \ - -pl "junit/kube-api-test" \ - -pl "junit/kube-api-test/core" \ - -pl "junit/kube-api-test/client-inject" \ - clean deploy + run: | + ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} \ + -pl "httpclient-jdk" \ + -pl "httpclient-jetty" \ + -pl "junit/kube-api-test" \ + -pl "junit/kube-api-test/core" \ + -pl "junit/kube-api-test/client-inject" \ + clean deploy - name: Build and release BOM run: | ./mvnw ${MAVEN_ARGS} ${RELEASE_MAVEN_ARGS} clean sundr:generate-bom &&