Skip to content

Commit

Permalink
Work-around upload issue with Google Play
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvire committed Sep 18, 2023
1 parent 3aab691 commit 3a4d75b
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,14 @@ publish_google_play() {
else
export SUPPLY_TRACK="${CHANNEL}"
fi

# https://github.com/fastlane/fastlane/issues/21507
# Google Api Error: Unathorized - REquest is missing required authentication credential
# Retry to work-around
if [ -z "${SUPPLY_UPLOAD_MAX_RETRIES}" ]; then
export SUPPLY_UPLOAD_MAX_RETRIES=5
fi

env | grep "SUPPLY_"
fastlane supply
if [[ -n "${PUBLISH_NO_APK}" ]]; then
Expand Down

0 comments on commit 3a4d75b

Please sign in to comment.