Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #17

Merged
merged 1 commit into from
Jun 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ function uploadapk(){
apk_version_code=$(apkinfoextractor $path_to_apk | jq '.versionCode')
edit_id=$(edit create)
apk upload --edit-id $edit_id --apk $path_to_apk
tracks update --edit-id $edit_id --track "internal" --apk-version-code $apk_version_code
edit validate --edit-id $edit_id
edit commit --edit-id $edit_id
edit_id=$(google-play-cli edit create)
google-play-cli apk upload --edit-id $edit_id --apk $path_to_apk
google-play-cli tracks update --edit-id $edit_id --track "internal" --apk-version-code $apk_version_code
google-play-cli edit validate --edit-id $edit_id
google-play-cli edit commit --edit-id $edit_id
unset APP_PACKAGE_NAME
unset PLAYSTORE_SERVICE_ACCOUNT_JSON
Expand Down