This project is a fastlane plugin. To get started with fastlane-plugin-carthage_cache_ftps
, add it to your project by running:
fastlane add_plugin carthage_cache_ftps
Allows to publish or install the carthage builds via FTPS to avoid recompilation.
Call the plugin from the Fastfile using
carthage_cache_ftps (
host: "ftp.yourdomain.de",
user: "username",
command: "install" #This is the default and can be omitted
)
to install from cache and use
carthage_cache (
host: "ftp.yourdomain.de",
user: "username",
command: "publish"
)
to push the current state to the remote.
Run
bundle exec fastlane actions carthage_cache_ftps
for more information and parameters.
To run both the tests, and code style validation, run
rake
To automatically fix many of the styling issues, use
rubocop -a
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
SecKeychainAddInternetPassword <NULL>: The specified item already exists in the keychain.
If you have to login every time and see an error like this, got to Keychain and delete the carthage cache entry.
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.