-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
No actions found after adding the plugin #1
Comments
It seems like you have not included the output of fastlane env |
Thanks for taking a look. Here is the env: ✅ fastlane environment ✅Stack
System Locale
fastlane files:`./fastlane/Fastfile`# 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
#
opt_out_usage
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
desc "Generate app icons"
lane :icons do
appicon(
appicon_image_file: 'art/icon/icon.png',
appicon_devices: [:ipad, :iphone, :ios_marketing],
appicon_path: 'proj.ios_mac/ios/Images.xcassets'
)
android_appicon(
appicon_image_file: 'art/icon/icon.png',
appicon_icon_types: [:launcher],
appicon_path: 'proj.android/app/res/mipmap'
)
end
desc "Generate assets for all resolutions"
lane :assets do
Dir.chdir("..") do
sh("python3", "scripts/generate-resources.py", "art/resources", "resources")
end
end
platform :ios do
before_all do
ENV["GYM_PROJECT"] = "./ios-build/asimov.xcodeproj"
ENV["FL_VERSION_NUMBER_PROJECT"] = ENV["GYM_PROJECT"]
ENV["FL_PROJECT_SIGNING_PROJECT_PATH"] = ENV["GYM_PROJECT"]
end
desc "Submits a new TestFlight Build"
lane :dogfood do
Dir.chdir("..") do
sh "cmake -B ios-build -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphoneos -DSIGN_IDENTITY:STRING=\"Apple Distribution\" -DDEVELOPMENT_TEAM:STRING=\"**\""
end
increment_build_number_in_plist(
build_number: String(Time.now.to_i)
)
match(type: "appstore")
build_app(
scheme: "asimov",
configuration: "Release",
export_method:"app-store")
upload_to_testflight
end
end `./fastlane/Appfile`# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
# apple_id("[[APPLE_ID]]") # Your Apple email address
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile fastlane gems
Loaded fastlane plugins:
Loaded gems
generated on: 2020-05-14 |
Quoting a possible fix from a similar issue as I could not reproduce it. Seems legit though so give it a try 😉
|
@FloresRobles Heyyy 👋 Looks like @nikolas-theodosis fixed this 5 days ago here - 53fab9a Try running |
Thanks for looking into this @nikolas-theodosis and for the ping @joshdholtz. After running through bundle and installing the latest version, I keep getting the following error when trying to run
Removing the plugin from Pluginfile fixes fastlane |
@FloresRobles same here, @nikolas-theodosis could you please fixed that issue? |
The action can't be found after installing the plugin via
bundle exec fastlane add_plugin discord_notifier
.Running
bundle exec fastlane action discord_notifier
prints:The text was updated successfully, but these errors were encountered: