mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 09:33:33 +00:00
fix: bumped version, update path from build error logs
This commit is contained in:
parent
1b59a8e8ef
commit
cd9ae97bc7
2 changed files with 16 additions and 9 deletions
23
.github/workflows/github_release.yml
vendored
23
.github/workflows/github_release.yml
vendored
|
|
@ -59,19 +59,24 @@ jobs:
|
||||||
|
|
||||||
- name: Prepare Signed Tempus APKs for Release
|
- name: Prepare Signed Tempus APKs for Release
|
||||||
run: |
|
run: |
|
||||||
# The signing action overwrites the original, so we find the files and rename them.
|
|
||||||
TEMPUS_PATH=app/build/outputs/apk/tempus/release
|
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
|
# 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
|
# 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."
|
echo "Prepared Tempus APKs."
|
||||||
ls -la *.apk
|
ls -la *.apk
|
||||||
|
|
||||||
# --- DEGOOGLED SIGNING AND RENAMING ---
|
|
||||||
- name: Sign Degoogled Release APKs
|
- name: Sign Degoogled Release APKs
|
||||||
id: sign_degoogled_release
|
id: sign_degoogled_release
|
||||||
uses: r0adkll/sign-android-release@v1
|
uses: r0adkll/sign-android-release@v1
|
||||||
|
|
@ -86,14 +91,17 @@ jobs:
|
||||||
|
|
||||||
- name: Prepare Signed Degoogled APKs for Release
|
- name: Prepare Signed Degoogled APKs for Release
|
||||||
run: |
|
run: |
|
||||||
# The signing action overwrites the original, so we find the files and rename them.
|
|
||||||
DEGOOGLED_PATH=app/build/outputs/apk/degoogled/release
|
DEGOOGLED_PATH=app/build/outputs/apk/degoogled/release
|
||||||
|
|
||||||
|
echo "--- Files in Degoogled Release Directory ---"
|
||||||
|
ls -la $DEGOOGLED_PATH
|
||||||
|
echo "-----------------------------------------"
|
||||||
|
|
||||||
# Renaming 64-bit APK
|
# 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
|
# 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."
|
echo "Prepared Degoogled APKs."
|
||||||
ls -la *.apk
|
ls -la *.apk
|
||||||
|
|
@ -113,7 +121,6 @@ jobs:
|
||||||
./app-tempus-armeabi-v7a-release.apk
|
./app-tempus-armeabi-v7a-release.apk
|
||||||
./app-degoogled-arm64-v8a-release.apk
|
./app-degoogled-arm64-v8a-release.apk
|
||||||
./app-degoogled-armeabi-v7a-release.apk
|
./app-degoogled-armeabi-v7a-release.apk
|
||||||
|
|
||||||
|
|
||||||
- name: Upload Debug APKs as artifacts
|
- name: Upload Debug APKs as artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ android {
|
||||||
targetSdk 35
|
targetSdk 35
|
||||||
|
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName '4.0.2'
|
versionName '4.0.3'
|
||||||
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
||||||
|
|
||||||
javaCompileOptions {
|
javaCompileOptions {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue