5 Commits

Author SHA1 Message Date
eddyizm
0c3b43c5dc fix: build paths 2025-10-26 11:49:08 -07:00
eddyizm
830e9076f1 never surrender 2025-10-26 11:32:23 -07:00
eddyizm
cd9ae97bc7 fix: bumped version, update path from build error logs 2025-10-26 11:17:59 -07:00
eddyizm
1b59a8e8ef chore: bumped build version 2025-10-26 10:59:22 -07:00
eddyizm
391405fc76 fix: workflow broken, taking another approach 2025-10-26 10:58:18 -07:00
4 changed files with 80 additions and 98 deletions

View File

@@ -35,17 +35,17 @@ jobs:
echo "BUILD_TOOL_VERSION=$BUILD_TOOL_VERSION" >> $GITHUB_ENV
echo Last build tool version is: $BUILD_TOOL_VERSION
- name: Build All APKs
- name: Build All Release APKs
id: build
run: |
# Build release variants
# Only build release variants (removed debug builds)
bash ./gradlew assembleTempusRelease
bash ./gradlew assembleDegoogledRelease
# Build debug variants
bash ./gradlew assembleTempusDebug
bash ./gradlew assembleDegoogledDebug
- name: Sign All Tempus Release APKs
- name: Create Artifact Staging Directory
run: mkdir -p release-artifacts
- name: Sign Tempus Release APKs
id: sign_tempus_release
uses: r0adkll/sign-android-release@v1
with:
@@ -54,11 +54,30 @@ jobs:
alias: ${{ secrets.KEY_ALIAS_GITHUB }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD_GITHUB }}
apkPath: "**/*.apk"
env:
BUILD_TOOLS_VERSION: ${{ env.BUILD_TOOL_VERSION }}
- name: Sign All Degoogled Release APKs
- name: Prepare Signed Tempus APKs for Release
run: |
TEMPUS_PATH=app/build/outputs/apk/tempus/release
echo "--- Tempus Files BEFORE Move ---"
ls -la $TEMPUS_PATH
echo "--------------------------------"
# FIX: Use find/xargs for robust file matching and moving.
# Renaming 64-bit APK and moving to safe staging directory
find $TEMPUS_PATH -name '*arm64-v8a*signed.apk' -print0 | xargs -0 mv -t ./release-artifacts/
mv ./release-artifacts/*arm64-v8a*signed.apk ./release-artifacts/app-tempus-arm64-v8a-release.apk
# Renaming 32-bit APK and moving to safe staging directory
find $TEMPUS_PATH -name '*armeabi-v7a*signed.apk' -print0 | xargs -0 mv -t ./release-artifacts/
mv ./release-artifacts/*armeabi-v7a*signed.apk ./release-artifacts/app-tempus-armeabi-v7a-release.apk
echo "Prepared Tempus APKs."
- name: Sign Degoogled Release APKs
id: sign_degoogled_release
uses: r0adkll/sign-android-release@v1
with:
@@ -67,104 +86,44 @@ jobs:
alias: ${{ secrets.KEY_ALIAS_GITHUB }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD_GITHUB }}
apkPath: "**/*.apk"
env:
BUILD_TOOLS_VERSION: ${{ env.BUILD_TOOL_VERSION }}
- name: Rename and Prepare APK Files
- name: Prepare Signed Degoogled APKs for Release
run: |
# Copy and rename tempus APKs
for file in app/build/outputs/apk/tempus/release/*.apk; do
if [[ $file == *"arm64-v8a"* ]]; then
cp "$file" "./app-tempus-arm64-v8a-release.apk"
echo "Created: app-tempus-arm64-v8a-release.apk"
elif [[ $file == *"armeabi-v7a"* ]]; then
cp "$file" "./app-tempus-armeabi-v7a-release.apk"
echo "Created: app-tempus-armeabi-v7a-release.apk"
fi
done
DEGOOGLED_PATH=app/build/outputs/apk/degoogled/release
# Copy and rename degoogled APKs
for file in app/build/outputs/apk/degoogled/release/*.apk; do
if [[ $file == *"arm64-v8a"* ]]; then
cp "$file" "./app-degoogled-arm64-v8a-release.apk"
echo "Created: app-degoogled-arm64-v8a-release.apk"
elif [[ $file == *"armeabi-v7a"* ]]; then
cp "$file" "./app-degoogled-armeabi-v7a-release.apk"
echo "Created: app-degoogled-armeabi-v7a-release.apk"
fi
done
echo "--- Degoogled Files BEFORE Move ---"
ls -la $DEGOOGLED_PATH
echo "--------------------------------"
# List the created files for verification
echo "Final APK files:"
ls -la *.apk
# FIX: Use find/xargs for robust file matching and moving.
# Renaming 64-bit APK and moving to safe staging directory
find $DEGOOGLED_PATH -name '*arm64-v8a*signed.apk' -print0 | xargs -0 mv -t ./release-artifacts/
mv ./release-artifacts/*arm64-v8a*signed.apk ./release-artifacts/app-degoogled-arm64-v8a-release.apk
# Renaming 32-bit APK and moving to safe staging directory
find $DEGOOGLED_PATH -name '*armeabi-v7a*signed.apk' -print0 | xargs -0 mv -t ./release-artifacts/
mv ./release-artifacts/*armeabi-v7a*signed.apk ./release-artifacts/app-degoogled-armeabi-v7a-release.apk
echo "Prepared Degoogled APKs."
ls -la ./release-artifacts/
- name: Create Release
id: create_release
uses: actions/create-release@v1
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release v${{ github.ref }}
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: '> Changelog coming soon'
env:
GITHUB_TOKEN: ${{ github.token }}
draft: false
prerelease: false
files: ./release-artifacts/*.apk
- name: Upload Tempus 64-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./app-tempus-arm64-v8a-release.apk
asset_name: app-tempus-arm64-v8a-release.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload Tempus 32-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./app-tempus-armeabi-v7a-release.apk
asset_name: app-tempus-armeabi-v7a-release.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload Degoogled 64-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./app-degoogled-arm64-v8a-release.apk
asset_name: app-degoogled-arm64-v8a-release.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload Degoogled 32-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./app-degoogled-armeabi-v7a-release.apk
asset_name: app-degoogled-armeabi-v7a-release.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload Debug APKs as artifacts
uses: actions/upload-artifact@v4
with:
name: debug-apks
path: |
app/build/outputs/apk/tempus/debug/
app/build/outputs/apk/degoogled/debug/
retention-days: 30
- name: Upload Release APKs as artifacts
- name: Upload Release APKs as artifacts (For easy pipeline access)
uses: actions/upload-artifact@v4
with:
name: release-apks
path: |
./app-tempus-arm64-v8a-release.apk
./app-tempus-armeabi-v7a-release.apk
./app-degoogled-arm64-v8a-release.apk
./app-degoogled-armeabi-v7a-release.apk
retention-days: 30
path: ./release-artifacts/*.apk
retention-days: 30

View File

@@ -1,6 +1,26 @@
# Changelog
***This log is for this fork to detail updates since 3.9.0 from the main repo.***
## [4.0.2](https://github.com/eddyizm/tempo/releases/tag/v4.0.2) (2025-10-26)
## Attention
This release will not update previous installs as it is considered a new app, no longer `Tempo`, new icon, new app id, and new app name. Hoping it will not be a huge inconvenience but was necessary in order to publish to app stores like IzzyDroid and FDroid.
**Android Auto**
Support should be the same as before, however, I was not able to test any of the icons/visuals, so please let me know if there are any remnants of the tempo logo/icon as I believe I removed them all and replaced them successfully.
## What's Changed
* Check also underlying transport by @zc-devs in https://github.com/eddyizm/tempus/pull/90
* fix: updated workflow for 32/64 bit apks by @eddyizm in https://github.com/eddyizm/tempus/pull/176
* Unhide genre from album details view by @sebaFlame in https://github.com/eddyizm/tempus/pull/161
* fix: persist album sorting on resume by @eddyizm in https://github.com/eddyizm/tempus/pull/181
* chore: update readme and usage references to tempus. added new banner… by @eddyizm in https://github.com/eddyizm/tempus/pull/182
* Tempus rebrand by @eddyizm in https://github.com/eddyizm/tempus/pull/183
* Update Polish translation by @skajmer in https://github.com/eddyizm/tempus/pull/188
## New Contributors
* @zc-devs made their first contribution in https://github.com/eddyizm/tempus/pull/90
* @sebaFlame made their first contribution in https://github.com/eddyizm/tempus/pull/161
**Full Changelog**: https://github.com/eddyizm/tempus/compare/v3.17.14...v4.0.1
## [3.17.14](https://github.com/eddyizm/tempo/releases/tag/v3.17.14) (2025-10-16)
## What's Changed
@@ -170,3 +190,5 @@
[\#400](https://github.com/CappielloAntonio/tempo/pull/400)
- [Chore] Spanish translation [\#374](https://github.com/CappielloAntonio/tempo/pull/374)
- [Chore] Polish translation [\#378](https://github.com/CappielloAntonio/tempo/pull/378)
***This log is for this fork to detail updates since 3.9.0 from the main repo.***

View File

@@ -35,9 +35,10 @@ Please note the two variants in the release assets include release/debug and 32/
`app-degoogled*` <- The f-droid release that goes without any of the google stuff. It was last released at 3.8.1 from the original repo. Since I don't have access to that original repo, I am releasing the apk's here on github.
Moved details to [CHANGELOG.md](CHANGELOG.md)
[CHANGELOG.md](CHANGELOG.md)
[**Buy me a coffee**](https://ko-fi.com/eddyizm)
Fork [**sponsorship here**](https://ko-fi.com/eddyizm).
## Usage

View File

@@ -11,7 +11,7 @@ android {
targetSdk 35
versionCode 1
versionName '4.0.1'
versionName '4.0.5'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
javaCompileOptions {