From cd9ae97bc7da6b9896afaf867a3408d05bf92a72 Mon Sep 17 00:00:00 2001 From: eddyizm Date: Sun, 26 Oct 2025 11:17:59 -0700 Subject: [PATCH] fix: bumped version, update path from build error logs --- .github/workflows/github_release.yml | 23 +++++++++++++++-------- app/build.gradle | 2 +- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml index 91ad81c6..b15b8b3a 100644 --- a/.github/workflows/github_release.yml +++ b/.github/workflows/github_release.yml @@ -59,19 +59,24 @@ jobs: - name: Prepare Signed Tempus APKs for Release run: | - # The signing action overwrites the original, so we find the files and rename them. TEMPUS_PATH=app/build/outputs/apk/tempus/release + echo "--- Files in Tempus Release Directory ---" + ls -la $TEMPUS_PATH + echo "-----------------------------------------" + + # TARGET: app-tempus-arm64-v8a-release-unsigned-signed.apk + # We use a wildcard that matches the ABI AND ensures it's the signed file. + # Renaming 64-bit APK - mv $TEMPUS_PATH/*arm64-v8a*.apk ./app-tempus-arm64-v8a-release.apk + mv $TEMPUS_PATH/*arm64-v8a*signed.apk ./app-tempus-arm64-v8a-release.apk # Renaming 32-bit APK - mv $TEMPUS_PATH/*armeabi-v7a*.apk ./app-tempus-armeabi-v7a-release.apk + mv $TEMPUS_PATH/*armeabi-v7a*signed.apk ./app-tempus-armeabi-v7a-release.apk echo "Prepared Tempus APKs." ls -la *.apk - # --- DEGOOGLED SIGNING AND RENAMING --- - name: Sign Degoogled Release APKs id: sign_degoogled_release uses: r0adkll/sign-android-release@v1 @@ -86,14 +91,17 @@ jobs: - name: Prepare Signed Degoogled APKs for Release run: | - # The signing action overwrites the original, so we find the files and rename them. DEGOOGLED_PATH=app/build/outputs/apk/degoogled/release + + echo "--- Files in Degoogled Release Directory ---" + ls -la $DEGOOGLED_PATH + echo "-----------------------------------------" # Renaming 64-bit APK - mv $DEGOOGLED_PATH/*arm64-v8a*.apk ./app-degoogled-arm64-v8a-release.apk + mv $DEGOOGLED_PATH/*arm64-v8a*signed.apk ./app-degoogled-arm64-v8a-release.apk # Renaming 32-bit APK - mv $DEGOOGLED_PATH/*armeabi-v7a*.apk ./app-degoogled-armeabi-v7a-release.apk + mv $DEGOOGLED_PATH/*armeabi-v7a*signed.apk ./app-degoogled-armeabi-v7a-release.apk echo "Prepared Degoogled APKs." ls -la *.apk @@ -113,7 +121,6 @@ jobs: ./app-tempus-armeabi-v7a-release.apk ./app-degoogled-arm64-v8a-release.apk ./app-degoogled-armeabi-v7a-release.apk - - name: Upload Debug APKs as artifacts uses: actions/upload-artifact@v4 diff --git a/app/build.gradle b/app/build.gradle index adc5d038..97e38ffc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,7 +11,7 @@ android { targetSdk 35 versionCode 1 - versionName '4.0.2' + versionName '4.0.3' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' javaCompileOptions {