We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
type
iOS builds are dependant on the type param right now as they are used to get the correct certificate for a build:
https://github.com/ionic-zone/fastlane-plugin-ionic/blob/master/lib/fastlane/plugin/ionic/actions/ionic_action.rb#L52
The text was updated successfully, but these errors were encountered:
This is related to #12
Because of this right now one has to build for development this way right now:
match ionic( platform: 'ios', release: false, type: 'development' )
Sorry, something went wrong.
Possible solution:
If release == false => type = development || param[:type] When build with --debug, set type to development or any supplied value
development
More thoughts:
Official documentation of the packageType param this fills:
release can be true or false for the plugin (which corresponds to --release and --debug on the CLI).
release
true
false
--release
--debug
Default value right now is app-store: https://github.com/ionic-zone/fastlane-plugin-ionic/blob/master/lib/fastlane/plugin/ionic/actions/ionic_action.rb#L173
app-store
So it would make sense to do this: release:true -> app-store release:false -> development
Documentation of https://github.com/ionic-zone/fastlane-plugin-ionic/blob/master/lib/fastlane/plugin/ionic/actions/ionic_action.rb#L171 should be made clearer as well an mention that it also defines which certificate is used to build.
No branches or pull requests
iOS builds are dependant on the
type
param right now as they are used to get the correct certificate for a build:https://github.com/ionic-zone/fastlane-plugin-ionic/blob/master/lib/fastlane/plugin/ionic/actions/ionic_action.rb#L52
The text was updated successfully, but these errors were encountered: