Skip to content

Commit

Permalink
workflow to automatically deploy apks
Browse files Browse the repository at this point in the history
  • Loading branch information
hoeveid committed Aug 4, 2024
1 parent 32208c4 commit 25e9d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# extract info from apk
androidhome="${ANDROID_HOME:-${ANDROID_SDK}}"
aaptPath=$(find ${androidhome}/build-tools -name aapt | sort | tail -1)
PKG=$(${aaptPath} d badging ${fn} | grep pack | tr ' ' '\n' | grep name | cut -d "'" -f 2)
PKG=$(${aaptPath} d badging ${fn} | grep pack | tr ' ' '\n' | grep -E ^name= | cut -d "'" -f 2)
echo "packageName=$PKG" >> $GITHUB_OUTPUT
- name: Publish to google play store 1
Expand Down

0 comments on commit 25e9d3d

Please sign in to comment.