Android icon indicating copy to clipboard operation
Android copied to clipboard

Make fastlane metadata upload less painful

Open TheLastProject opened this issue 2 years ago • 1 comments

Fastlane is actually pretty annoying.

Whenever I release a Catima update I update the Google Play metadata like such:

$ bundle exec fastlane supply --version_code xxx

That will fail pretty much every single time for some language so I have to:

$ tmp="$(mktemp -d)"
$ mv fastlane/metadata/android/<languagecode> $tmp/

and then repeat the supply command.

Need to do this like 10+ times in a row, looking through the backtrace every single time.

Fastlane themselves have ignored me on this issue sadly: https://github.com/fastlane/fastlane/discussions/20924

TheLastProject avatar Jan 29 '23 11:01 TheLastProject