setapp plugin
Getting Started
This project is a fastlane plugin. To get started with fastlane-plugin-setapp, you can either add it globally for all projects, or locally to an individual project.
Globally
If you install the gem globally, you can run it with any project that is setup for using fastlane
.
gem install fastlane-plugin-setapp
Add the actions you want to use to your Fastfile
file and call fastlane
to run.
Locally
You can also add the plugin for individual projects. Navigate to your project where fastlane
is already set up and run the following command:
bundle exec fastlane add_plugin setapp
Fastlane will guide you through the process. It will add a Pluginfile
where the sentry plugin is listed and also update the Gemfile
and Gemfile.lock
to include it as a dependency.
gem 'fastlane-plugin-setapp'
Add the actions you want to use to your Fastfile
file and call bundle exec fastlane
to run.
Setapp actions
A subset of actions to upload new builds to Setapp.
Upload Setapp build
Uploads new version to Setapp and save it as a draft or send to a review process. You can add release notes for new build and specify if a version should be released right after approval.
upload_setapp_build(
automation_token: '...',
build_path: '...',
release_notes: '...',
version_status: 'review',
release_on_approval: true,
is_beta: false,
allow_overwrite: true
)
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.