Merge pull request #4 from meowarex/dev

Upload APKM
This commit is contained in:
2026-05-20 21:01:23 +10:00
committed by GitHub
3 changed files with 27 additions and 3 deletions
+4
View File
@@ -0,0 +1,4 @@
tidal-apk/*.apk filter=lfs diff=lfs merge=lfs -text
tidal-apk/*.apkm filter=lfs diff=lfs merge=lfs -text
patches/extension/**/*.smali text eol=lf
patches/*.patch text eol=lf
+22 -2
View File
@@ -19,14 +19,34 @@ jobs:
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: rl-mobile-artifacts
path: ./dist/
- name: Rename APK
run: mv ./dist/app-release.apk ./dist/rl-manager.apk
- name: Prepare release assets
run: |
mv ./dist/app-release.apk ./dist/rl-manager.apk
cp patches/data.json ./dist/data.json
cd patches && zip -r ../dist/patches.zip . -x "data.json" && cd ..
tidal_src=$(find tidal-apk -maxdepth 1 \( -name "*.apk" -o -name "*.apkm" \) | head -1)
if [ -z "$tidal_src" ]; then
echo "::error::No TIDAL .apk or .apkm found in tidal-apk/"
exit 1
fi
if [[ "$tidal_src" == *.apkm ]]; then
echo "Extracting base.apk from $tidal_src"
unzip -p "$tidal_src" base.apk > ./dist/tidal-stock.apk
else
cp "$tidal_src" ./dist/tidal-stock.apk
fi
- name: Publish release
uses: marvinpinto/action-automatic-releases@latest
+1 -1
View File
@@ -1,5 +1,5 @@
{
"tidalVersionCode": 9089,
"tidalApkUrl": "",
"tidalApkUrl": "https://github.com/meowarex/rl-mobile/releases/download/latest/tidal-stock.apk",
"patchesVersion": "0.5.0"
}