From 0676b2dab255fc6ccef77c2d8eb6f68d9a6dc465 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 7 May 2025 16:26:54 +0200 Subject: [PATCH] ci : add bindings-java jar artifact to release (#3126) This commit adds the jar artifact from bindings java to the release process. --- .github/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50e263a5..7e8d461f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1120,11 +1120,16 @@ jobs: chmod +x ./gradlew ./gradlew build --info + - name: Pack jar artifacts + shell: pwsh + run: | + Compress-Archive -Path "bindings/java/build/libs/whispercpp-*.jar" -DestinationPath "whispercpp.jar.zip" + - name: Upload jar uses: actions/upload-artifact@v4 with: - name: whispercpp.jar - path: bindings/java/build/libs/whispercpp-*.jar + name: whispercpp.jar.zip + path: whispercpp.jar.zip # - name: Publish package # if: ${{ github.ref == 'refs/heads/master' }}