You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bundle exec fastlane test archive_path:MyArchiveName.xcarchive
In my Fastfile I have
default_platform(:ios)
platform :ios do
lane :test do |options|
store_size_xcarchive(archive_path: options[:archive_path])
store_size_xcarchive_check
end
end
However I get the following error:
bundle exec fastlane test archive_path:SizeTest.xcarchive
[✔] 🚀
[15:46:17]: ------------------------------
[15:46:17]: --- Step: default_platform ---
[15:46:17]: ------------------------------
[15:46:17]: Driving the lane 'ios test' 🚀
+------------------+----------+
| Lane Context |
+------------------+----------+
| DEFAULT_PLATFORM | ios |
| PLATFORM_NAME | ios |
| LANE_NAME | ios test |
+------------------+----------+
[15:46:17]: Could not find action, lane or variable 'store_size_xcarchive'. Check out the documentation for more details: https://docs.fastlane.tools/actions
The text was updated successfully, but these errors were encountered:
I install the plugin using the following steps:
fastlane add_plugin store_sizer
fastlane install_plugins
bundle exec fastlane test archive_path:MyArchiveName.xcarchive
In my Fastfile I have
However I get the following error:
The text was updated successfully, but these errors were encountered: