carthage_cache_ftps plugin

fastlane Plugin Badge

Getting Started

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

About carthage_cache_ftps

Allows to publish or install the carthage builds via FTPS or AWS to avoid recompilation.

AWS

First, run

carthage_cache config

to create the .carthage_cache.yml file.

Then, call the plugin from the Fastfile using

carthage_cache (
  command: "install" #This is the default and can be omitted
)

to install from cache and use

carthage_cache (
  command: "publish"
)

to push the current state to the remote.

Run

bundle exec fastlane actions carthage_cache

for more information.

FTPS

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.

Run tests for this plugin

To run both the tests, and code style validation, run

rake

To automatically fix many of the styling issues, use

rubocop -a

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.