From 37bf9c74cb807865c7aa8439290f7c7103f7a684 Mon Sep 17 00:00:00 2001 From: Space Date: Sun, 1 Mar 2026 17:29:09 +0100 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 81cb19d..c0d403e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -50,11 +50,15 @@ jobs: --profile=preview working-directory: mobile + # Neuer Schritt: Rename das Binary, damit es wie eine echte App aussieht + - name: 📝 Rename build to APK + run: mv mobile/app-build mobile/app-release.apk + - name: 📤 Upload build artifact uses: actions/upload-artifact@v3 with: - name: android-preview-build.zip - path: mobile/app-build + name: android-preview-build + path: mobile/app-release.apk if-no-files-found: error - name: 🏷 Create tag @@ -69,7 +73,7 @@ jobs: with: tag_name: ${{ env.RELEASE_TAG }} name: ${{ env.RELEASE_TAG }} - files: mobile/app-build + files: mobile/app-release.apk generate_release_notes: true env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file