We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a66f9f commit 05a1b81Copy full SHA for 05a1b81
.github/workflows/build.yml
@@ -1120,11 +1120,19 @@ jobs:
1120
chmod +x ./gradlew
1121
./gradlew build --info
1122
1123
+ - name: Pack jar artifacts
1124
+ id: pack_artifacts
1125
+ if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/master') ||
1126
+ github.event.inputs.create_release == 'true' ||
1127
+ github.event.inputs.pre_release_tag != '' }}
1128
+ run: |
1129
+ zip -r whispercpp.jar bindings/java/build/libs/whispercpp-*.jar
1130
+
1131
- name: Upload jar
1132
uses: actions/upload-artifact@v4
1133
with:
1134
name: whispercpp.jar
- path: bindings/java/build/libs/whispercpp-*.jar
1135
+ path: whispercpp.jar
1136
1137
# - name: Publish package
1138
# if: ${{ github.ref == 'refs/heads/master' }}
0 commit comments