File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -61,26 +61,28 @@ jobs:
6161 run : |
6262 cd ${{ github.workspace }}/V2rayNG
6363 chmod 755 gradlew
64- ./gradlew licenseFdroidReleaseReport
64+ sed -i '/flavorDimensions\.add("distribution")/d' app/build.gradle.kts
65+ sed -i '/productFlavors {/,/^ }\s*$/d' app/build.gradle.kts
66+ ./gradlew licenseReleaseReport
6567 ./gradlew assembleRelease -Pandroid.injected.signing.store.file=${{ steps.android_keystore.outputs.filePath }} -Pandroid.injected.signing.store.password=${{ secrets.APP_KEYSTORE_PASSWORD }} -Pandroid.injected.signing.key.alias=${{ secrets.APP_KEYSTORE_ALIAS }} -Pandroid.injected.signing.key.password=${{ secrets.APP_KEY_PASSWORD }}
6668
6769 - name : Upload arm64-v8a APK
6870 uses : actions/upload-artifact@v4
6971 if : ${{ success() }}
7072 with :
7173 name : arm64-v8a
72- path : ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/ release/*arm64-v8a*.apk
74+ path : ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/release/*arm64-v8a*.apk
7375
7476 - name : Upload armeabi-v7a APK
7577 uses : actions/upload-artifact@v4
7678 if : ${{ success() }}
7779 with :
7880 name : armeabi-v7a
79- path : ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/ release/*armeabi-v7a*.apk
81+ path : ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/release/*armeabi-v7a*.apk
8082
8183 - name : Upload x86 APK
8284 uses : actions/upload-artifact@v4
8385 if : ${{ success() }}
8486 with :
8587 name : x86-apk
86- path : ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/ release/*x86*.apk
88+ path : ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/release/*x86*.apk
You can’t perform that action at this time.
0 commit comments