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 43f3cb5 commit 06a2aff
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 @@ -77,6 +77,6 @@ jobs:
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: release-apk/*.apk
files: /*.apk
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 06a2aff

Please sign in to comment.