From: Daniel Bevenius Date: Wed, 7 May 2025 14:26:54 +0000 (+0200) Subject: ci : add bindings-java jar artifact to release (#3126) X-Git-Tag: upstream/1.7.5+170~13 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=0676b2dab255fc6ccef77c2d8eb6f68d9a6dc465;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp ci : add bindings-java jar artifact to release (#3126) This commit adds the jar artifact from bindings java to the release process. --- 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' }}