From a3540e92daff56be0be5b9274420c34d1a6680f4 Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 08:55:30 +0400 Subject: [PATCH 1/8] fix github actiona --- .github/workflows/github_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index 6b7f9bc29..f0752d555 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -20,7 +20,7 @@ jobs: run: ./gradlew assemblePlayDebug - name: Upload - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: app-debug.apk path: app/build/outputs/apk/debug/app-debug.apk From 73b7c814bf0c5078e9126727d02870865af2b72f Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 09:13:30 +0400 Subject: [PATCH 2/8] update github actions --- .github/workflows/github_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index f0752d555..5bb13a552 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -14,7 +14,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: 'zulu' - java-version: '17' + java-version: '21' - name: Build run: ./gradlew assemblePlayDebug From a244da2688e8ba6e7000635d26310a04b9db176d Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 10:03:02 +0400 Subject: [PATCH 3/8] update github actions --- .github/workflows/github_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index 5bb13a552..d5c50ddcd 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -23,4 +23,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: app-debug.apk - path: app/build/outputs/apk/debug/app-debug.apk + path: app/build/outputs/apk/debug/app-play-debug.apk From cf2f3ac3984bf1eeb5342ce9d313f602567d35be Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 10:28:13 +0400 Subject: [PATCH 4/8] update github actions --- .github/workflows/github_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index d5c50ddcd..19bcd81be 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -23,4 +23,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: app-debug.apk - path: app/build/outputs/apk/debug/app-play-debug.apk + path: build/outputs/apk/debug/app-play-debug.apk From 04dc7d0fed8937d55595c4aae085d98f49396dff Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 21:56:29 +0400 Subject: [PATCH 5/8] update github actions --- .github/workflows/github_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index 19bcd81be..92178f073 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -23,4 +23,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: app-debug.apk - path: build/outputs/apk/debug/app-play-debug.apk + path: app/build/outputs/apk/debug/*.apk From 3e6885ac0b3eedceb5126927c43a99c6da6d8764 Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 22:18:19 +0400 Subject: [PATCH 6/8] update github actions test --- .github/workflows/github_build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index 92178f073..ae29f92d8 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -22,5 +22,11 @@ jobs: - name: Upload uses: actions/upload-artifact@v4 with: - name: app-debug.apk - path: app/build/outputs/apk/debug/*.apk + name: app-debug + path: app/build/outputs + + - name: Upload2 + uses: actions/upload-artifact@v4 + with: + name: app-debug2 + path: build/outputs From 197624a70493ed08bb2d2d6cc77febf61b0f261c Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 22:32:54 +0400 Subject: [PATCH 7/8] update github actions --- .github/workflows/github_build.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index ae29f92d8..81efedf99 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -22,11 +22,5 @@ jobs: - name: Upload uses: actions/upload-artifact@v4 with: - name: app-debug - path: app/build/outputs - - - name: Upload2 - uses: actions/upload-artifact@v4 - with: - name: app-debug2 - path: build/outputs + name: app-play-debug.apk + path: app/build/outputs/apk/play/debug/*.apk From d8016d0ab1427aa6fbbf55b05592d6a04bd71b57 Mon Sep 17 00:00:00 2001 From: Anton Razinkov Date: Tue, 6 Jan 2026 22:47:27 +0400 Subject: [PATCH 8/8] update github actions --- .github/workflows/github_build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/github_build.yml b/.github/workflows/github_build.yml index 81efedf99..58bedf79a 100644 --- a/.github/workflows/github_build.yml +++ b/.github/workflows/github_build.yml @@ -22,5 +22,4 @@ jobs: - name: Upload uses: actions/upload-artifact@v4 with: - name: app-play-debug.apk path: app/build/outputs/apk/play/debug/*.apk