We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm hitting an error when trying to clean testflight users using older builds.
I run bundle exec fastlane pilot builds and see the following builds.
bundle exec fastlane pilot builds
+------------+------------+-----------+ | Version # | Build # | Installs | +------------+------------+-----------+ | 0.9.13 | 2080.51 | 999 | | 0.9.12 | 1557.322 | 999 | +------------+------------+-----------+
In my Fastfile I have:
lane :clean do clean_testflight_testers(dry_run: true, oldest_build_allowed: 1557.322) end
I then run bundle exec fastlane clean
bundle exec fastlane clean
And get the error 'oldest_build_allowed' value must be a Integer! Found String instead.
'oldest_build_allowed' value must be a Integer! Found String instead.
Issue seems to be coming from https://github.com/KrauseFx/fastlane-plugin-clean_testflight_testers/blob/master/lib/fastlane/plugin/clean_testflight_testers/actions/clean_testflight_testers_action.rb#L37
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm hitting an error when trying to clean testflight users using older builds.
I run
bundle exec fastlane pilot builds
and see the following builds.In my Fastfile I have:
I then run
bundle exec fastlane clean
And get the error
'oldest_build_allowed' value must be a Integer! Found String instead.
Issue seems to be coming from https://github.com/KrauseFx/fastlane-plugin-clean_testflight_testers/blob/master/lib/fastlane/plugin/clean_testflight_testers/actions/clean_testflight_testers_action.rb#L37
The text was updated successfully, but these errors were encountered: