We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75dfea commit 0a1fd4dCopy full SHA for 0a1fd4d
1 file changed
.github/workflows/android-build.yml
@@ -56,12 +56,12 @@ jobs:
56
VideoServer/.gradle
57
key: ${{ runner.os }}-videoserver-gradle-${{ hashFiles('VideoServer/gradlew', 'VideoServer/build.gradle') }}
58
59
- - name: Build VideoServer
60
- run: chmod +x gradlew && ./gradlew build
+ - name: Build VideoServer Shadow JAR
+ run: chmod +x gradlew && ./gradlew shadowJar
61
working-directory: ./VideoServer
62
63
- - name: Upload VideoServer jar artifact
+ - name: Upload VideoServer shadow JAR artifact
64
uses: actions/upload-artifact@v4
65
with:
66
- name: video-server-jar
67
- path: VideoServer/build/libs/*.jar
+ name: video-server-shadow-jar
+ path: VideoServer/build/libs/*-all.jar
0 commit comments