Skip to content

Commit

Permalink
Update APK path in build-and-release workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kdroidFilter committed Jan 3, 2025
1 parent a2907a4 commit 43f3cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release-android-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 43f3cb5

Please sign in to comment.