Removed other sources

This commit is contained in:
Mio.
2025-06-28 00:06:48 +02:00
parent 965c2a4f43
commit 8ddfe82fd6
5479 changed files with 789 additions and 22912 deletions

12
.github/scripts/move-built-apks.py vendored Normal file
View File

@@ -0,0 +1,12 @@
from pathlib import Path
import shutil
REPO_APK_DIR = Path("repo/apk")
shutil.rmtree(REPO_APK_DIR, ignore_errors=True)
REPO_APK_DIR.mkdir(parents=True, exist_ok=True)
for apk in Path.home().joinpath("apk-artifacts").glob("**/*.apk"):
apk_name = apk.name.replace("-release.apk", ".apk")
shutil.move(apk, REPO_APK_DIR.joinpath(apk_name))