Skip to content

Commit

Permalink
Update workflow to specify APK file pattern for GitHub release
Browse files Browse the repository at this point in the history
Updated the GitHub Actions workflow to include a clearer APK file pattern (`com.kdroid.kmplog.client-*.apk`) for releases. This ensures only correctly named APK files are uploaded during the GitHub release process.
  • Loading branch information
kdroidFilter committed Jan 3, 2025
1 parent 06a2aff commit f5d3061
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-and-release-android-app.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
name: Build and Release Android APK


on:
push:
tags:
Expand Down Expand Up @@ -77,6 +80,7 @@ jobs:
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: /*.apk
files: |
com.kdroid.kmplog.client-*.apk
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f5d3061

Please sign in to comment.