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 &&