From 43f3cb5edcd2d9460bf13df5cbfbe330067afc65 Mon Sep 17 00:00:00 2001 From: Elie G Date: Fri, 3 Jan 2025 14:01:39 +0200 Subject: [PATCH] Update APK path in build-and-release workflow Corrected the APK path in the GitHub Actions workflow to ensure the release APK is uploaded successfully. This fixes potential issues with locating the built APK during the upload step. --- .github/workflows/build-and-release-android-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-release-android-app.yml b/.github/workflows/build-and-release-android-app.yml index b68af6d..5194ed3 100644 --- a/.github/workflows/build-and-release-android-app.yml +++ b/.github/workflows/build-and-release-android-app.yml @@ -50,7 +50,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: release-apk - path: ${{ env.APK_PATH }} + path: kmplog-client/build/outputs/apk/release/*.apk release: runs-on: ubuntu-latest