firebase / fastlane-plugin-firebase_app_distribution

fastlane plugin for Firebase App Distribution. https://firebase.google.com/docs/app-distribution
MIT License
164 stars 27 forks source link

[!] No actions were found while loading one or more plugins Please use `bundle exec fastlane` with plugins #85

Closed kumareshsaran closed 3 years ago

kumareshsaran commented 3 years ago

Help me out. thanks in advance

🚫 fastlane environment 🚫 ### Stack | Key | Value | | --------------------------- | -------------------------------------------------------------- | | OS | 10.15.5 | | Ruby | 2.6.3 | | Bundler? | false | | Git | git version 2.24.2 (Apple Git-127) | | Installation Source | /usr/local/bin/fastlane | | Host | Mac OS X 10.15.5 (19F101) | | Ruby Lib Dir | /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib | | OpenSSL Version | LibreSSL 2.8.3 | | Is contained | false | | Is homebrew | false | | Is installed via Fabric.app | false | | Xcode Path | /Applications/Xcode.app/Contents/Developer/ | | Xcode Version | 11.4.1 | ### System Locale | Error | | --------------------------- | | No Locale with UTF8 found 🚫 | ### fastlane files:
`./fastlane/Fastfile` ```ruby # This file contains the fastlane.tools configuration # You can find the documentation at https://docs.fastlane.tools # # For a list of all available actions, check out # # https://docs.fastlane.tools/actions # # For a list of all available plugins, check out # # https://docs.fastlane.tools/plugins/available-plugins # # Uncomment the line if you want fastlane to automatically update itself update_fastlane default_platform(:ios) lane :tests do run_tests(scheme: "RELoginUITests", devices: ["iPhone 11"], slack_url: "https://hooks.slack.com/services/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", slack_message: "UItest Case Status", reinstall_app: false, include_simulator_logs: true, slack_channel: "#sarankumaresh1") end desc "Run Appium" lane :appiumTest do appium( app_path: "/Users/thapovan/Documents/Kumaresan/fastlane_Sample/build/Release-iphonesimulator/fastlane_Sample.app", spec_path: "appium/spec", platform: "iOS", caps: { versionNumber: "14.0", deviceName: "iPhone 11 Pro", udid: "909811D1-C5C7-4D61-8FBB-465D5C1D7EB4", }, appium_lib: { wait: 10 } ) end default_platform(:ios) platform :ios do desc "Description of what the lane does" lane :custom_lane do # add actions here: https://docs.fastlane.tools/actions end desc "Run Unit tests" lane :buildForSimulator do xcbuild( workspace: "Reimbursify.xcworkspace", scheme: "Reimbursify", configuration: "Debug", xcargs: "-sdk iphonesimulator -destination='name=iPhone 7,OS=10.2'", buildlog_path: "build.log" ) end desc "Run Unit tests" lane :unit_tests do run_tests(scheme: "ReimbursifyTests") end desc "send message to slack" lane :sendMessage do slack( channel: "general", message: "Done!" ) end desc "Uploads build to HockeyApp" lane :beta do commit = last_git_commit increment_build_number disable_automatic_code_signing build_app( scheme: "Reimbursify", workspace: "Reimbursify.xcworkspace", clean: true, include_bitcode: false, export_options: { method: "ad-hoc", app_identifier: "com.reimbursify.Reimbursify", ipa: "Reimbursify.ipa" } ) hockey( api_token: "83014ec8cdf74104b017d683eba76abd", mandatory: "1", ipa: "./Reimbursify.ipa", dsym: "./Reimbursify.app.dSYM.zip", notify: "1", mandatory: "1", notes: commit[:message] ) slack( message: "App successfully released", channel: "reimbursifybot", slack_url: "https://hooks.slack.com/services/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", payload: { "Hockey App Download URL" => lane_context[SharedValues::HOCKEY_DOWNLOAD_LINK] }) end desc "Uploads build to Testflight" lane :Staging do increment_build_number cocoapods disable_automatic_code_signing build_app( scheme: "Reimbursify", workspace: "Reimbursify.xcworkspace", clean: true, include_bitcode: false, export_options: { method: "ad-hoc", app_identifier: "com.reimbursify.Reimbursify", ipa: "Reimbursify.ipa" } ) upload_to_testflight( skip_waiting_for_build_processing: true, skip_submission: true, app_identifier: 'com.reimbursify.Reimbursify' ) end end ```
# For more information about the Appfile, see: # https://docs.fastlane.tools/advanced/#appfile ```

fastlane gems

Gem Version Update-Status
fastlane 2.152.0 ✅ Up-To-Date

Loaded fastlane plugins:

Plugin Version Update-Status
fastlane-plugin-latest_hockeyapp_version_number undefined 💥 Check failed
fastlane-plugin-latest_hockeyapp_version_number undefined 💥 Check failed
Loaded gems | Gem | Version | | ------------------------- | ------------ | | did_you_mean | 1.3.0 | | slack-notifier | 2.3.2 | | atomos | 0.1.3 | | CFPropertyList | 2.3.6 | | claide | 1.0.3 | | colored2 | 3.1.2 | | nanaimo | 0.2.6 | | xcodeproj | 1.16.0 | | rouge | 2.0.7 | | xcpretty | 0.3.0 | | terminal-notifier | 2.0.0 | | unicode-display_width | 1.7.0 | | terminal-table | 1.8.0 | | plist | 3.5.0 | | public_suffix | 2.0.5 | | addressable | 2.7.0 | | multipart-post | 2.0.0 | | word_wrap | 1.0.0 | | tty-screen | 0.7.1 | | tty-cursor | 0.7.1 | | tty-spinner | 0.9.3 | | babosa | 1.0.3 | | colored | 1.2 | | highline | 1.7.10 | | commander-fastlane | 4.4.6 | | excon | 0.73.0 | | faraday | 0.17.3 | | unf_ext | 0.0.7.7 | | unf | 0.1.4 | | domain_name | 0.5.20190701 | | http-cookie | 1.0.3 | | faraday-cookie_jar | 0.0.6 | | faraday_middleware | 0.13.1 | | fastimage | 2.1.7 | | gh_inspector | 1.1.3 | | json | 2.1.0 | | mini_magick | 4.10.1 | | rubyzip | 2.3.0 | | security | 0.1.3 | | xcpretty-travis-formatter | 1.0.0 | | dotenv | 2.7.5 | | bundler | 1.17.2 | | naturally | 2.2.0 | | simctl | 1.6.8 | | jwt | 2.1.0 | | uber | 0.1.0 | | declarative | 0.0.10 | | declarative-option | 0.1.0 | | representable | 3.0.4 | | retriable | 3.1.2 | | mini_mime | 1.0.2 | | multi_json | 1.14.1 | | signet | 0.14.0 | | memoist | 0.16.2 | | os | 1.1.0 | | googleauth | 0.12.0 | | httpclient | 2.8.3 | | google-api-client | 0.38.0 | | google-cloud-env | 1.3.1 | | google-cloud-errors | 1.0.0 | | google-cloud-core | 1.5.0 | | digest-crc | 0.5.1 | | google-cloud-storage | 1.26.0 | | emoji_regex | 1.0.1 | | jmespath | 1.4.0 | | aws-partitions | 1.304.0 | | aws-eventstream | 1.1.0 | | aws-sigv4 | 1.1.3 | | aws-sdk-core | 3.94.0 | | aws-sdk-kms | 1.30.0 | | aws-sdk-s3 | 1.63.0 | | forwardable | 1.2.0 | | logger | 1.3.0 | | stringio | 0.0.2 | | ipaddr | 1.2.2 | | openssl | 2.1.2 | | ostruct | 0.1.0 | | strscan | 1.0.0 | | date | 2.0.0 | | fileutils | 1.1.0 | | etc | 1.0.1 | | io-console | 0.4.7 | | zlib | 1.0.0 | | libxml-ruby | 3.1.0 | | rexml | 3.1.9 | | psych | 3.1.0 | | mutex_m | 0.1.0 | | webrick | 1.4.2 |

generated on: 2020-07-23

cvaghela commented 3 years ago

Did you install this Plugin with fastlane add_plugin fastlane-plugin-firebase_app_distribution? Or try to execute: sudo fastlane install_plugins

rebehe commented 10 months ago

FYI @kumareshsaran, we noticed there are two slack webhooks in your original post. Consider removing it and revoking it if still applicable