From 28dcdff4c52e39126fc521763aed935a1d45d704 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 28 Apr 2025 15:38:52 +0200 Subject: [PATCH] ci : disable publishing of java binding [no ci] (#3086) This commit disables the publishing of the Java binding to the Maven repository. The motivation for this is that this job was disabled for some time and recently it was re-enabled, but the publishing of the Java binding caused the build to fail and needs to be investigated further. Refs: https://github.com/ggml-org/whisper.cpp/issues/3079 --- .github/workflows/build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 553fc0c0..bc66d1d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1104,17 +1104,17 @@ jobs: name: whispercpp.jar path: bindings/java/build/libs/whispercpp-*.jar - - name: Publish package - if: ${{ github.ref == 'refs/heads/master' }} - uses: gradle/gradle-build-action@v2.4.2 - with: - arguments: publish - build-root-directory: bindings/java - env: - MAVEN_USERNAME: ${{ secrets.JIRA_USER }} - MAVEN_PASSWORD: ${{ secrets.JIRA_PASS }} - PGP_SECRET: ${{ secrets.GPG_PRIVATE_KEY }} - PGP_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} +# - name: Publish package +# if: ${{ github.ref == 'refs/heads/master' }} +# uses: gradle/gradle-build-action@v2.4.2 +# with: +# arguments: publish +# build-root-directory: bindings/java +# env: +# MAVEN_USERNAME: ${{ secrets.JIRA_USER }} +# MAVEN_PASSWORD: ${{ secrets.JIRA_PASS }} +# PGP_SECRET: ${{ secrets.GPG_PRIVATE_KEY }} +# PGP_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} quantize: if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||