google_drive fastlane plugin

fastlane Plugin Badge Gem Version Badge Build Status Test Coverage security

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-google_drive, add it to your project by running:

fastlane add_plugin google_drive

About google_drive

Please refer to this guide to create an Google Drive credential.

Upload files to Google Drive folder.

Aliases for this action - google_drive_upload and upload_google_drive are both removed in v0.6.0.

upload_to_google_drive(
  drive_keyfile: 'drive_key.json',
  service_account: true,
  folder_id: 'folder_id',
  upload_files: ['file_to_upload', 'another_file_to_upload']
)

Create new Google Drive folder:

create_google_drive_folder(
  drive_keyfile: 'drive_key.json',
  folder_id: '#{folder_id}',
  folder_title: 'new_folder'
)

Update the content of existing Google Drive file:

update_google_drive_file(
  drive_keyfile: 'drive_key.json',
  file_id: 'file_id',
  upload_file: 'path/to/file.txt'
)

Download feature is not implemented yet. PR is always welcome.

Example

Check out the example Fastfile to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins and bundle exec fastlane test.

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.

License

The MIT License (MIT)

Copyright (c) 2019 Bumsoo Kim (https://bsk.im)