From 1d05e0baeab0b7d8346191a218295725de0649ce Mon Sep 17 00:00:00 2001 From: UjuiUjuMandan <125150101+UjuiUjuMandan@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:36:55 +0000 Subject: [PATCH] Revert "Add signature for build" This reverts commit 54d520727e7b4558688fbfcb3be027148187e187. --- .github/workflows/build.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0c90f1046..8222021c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -120,37 +120,30 @@ jobs: - name: Setup Android environment uses: android-actions/setup-android@v3 - - name: Decode Keystore - uses: timheuer/base64-to-file@v1 - id: android_keystore - with: - fileName: "android_keystore.jks" - encodedString: ${{ secrets.APP_KEYSTORE_BASE64 }} - - name: Build APK run: | cd ${{ github.workspace }}/V2rayNG chmod 755 gradlew ./gradlew licenseFdroidReleaseReport - ./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 }} + ./gradlew assembleDebug - name: Upload arm64-v8a APK uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: arm64-v8a - path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/release/*arm64-v8a*.apk + path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/debug/*arm64-v8a*.apk - name: Upload armeabi-v7a APK uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: armeabi-v7a - path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/release/*armeabi-v7a*.apk + path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/debug/*armeabi-v7a*.apk - name: Upload x86 APK uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: x86-apk - path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/release/*x86*.apk + path: ${{ github.workspace }}/V2rayNG/app/build/outputs/apk/*/debug/*x86*.apk