From 804fd752e86907027d02e477b7fa0bf414e2b654 Mon Sep 17 00:00:00 2001 From: stevenyomi <95685115+stevenyomi@users.noreply.github.com> Date: Sat, 30 Aug 2025 11:38:52 +0000 Subject: [PATCH] Fix versionId being deleted in index --- .github/scripts/generate-build-matrices.py | 2 +- .github/scripts/merge-repo.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/generate-build-matrices.py b/.github/scripts/generate-build-matrices.py index 591f06253..e6b2cb9b0 100644 --- a/.github/scripts/generate-build-matrices.py +++ b/.github/scripts/generate-build-matrices.py @@ -12,7 +12,7 @@ MULTISRC_LIB_REGEX = re.compile(r"^lib-multisrc/(?P\w+)") LIB_REGEX = re.compile(r"^lib/(?P\w+)") MODULE_REGEX = re.compile(r"^:src:(?P\w+):(?P\w+)$") CORE_FILES_REGEX = re.compile( - r"^(buildSrc/|core/|gradle/|build\.gradle\.kts|common\.gradle|gradle\.properties|settings\.gradle\.kts)" + r"^(buildSrc/|core/|gradle/|build\.gradle\.kts|common\.gradle|gradle\.properties|settings\.gradle\.kts|.github/scripts)" ) def run_command(command: str) -> str: diff --git a/.github/scripts/merge-repo.py b/.github/scripts/merge-repo.py index 4ffc2163f..cb1d202f7 100644 --- a/.github/scripts/merge-repo.py +++ b/.github/scripts/merge-repo.py @@ -22,7 +22,7 @@ for module in to_delete: shutil.copytree(src=LOCAL_REPO.joinpath("apk"), dst=REMOTE_REPO.joinpath("apk"), dirs_exist_ok = True) shutil.copytree(src=LOCAL_REPO.joinpath("icon"), dst=REMOTE_REPO.joinpath("icon"), dirs_exist_ok = True) -with REMOTE_REPO.joinpath("index.min.json").open() as remote_index_file: +with REMOTE_REPO.joinpath("index.json").open() as remote_index_file: remote_index = json.load(remote_index_file) with LOCAL_REPO.joinpath("index.min.json").open() as local_index_file: