-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
Add a method to upload xcode archive to s3 #45
Conversation
@claireAD This is fantastic! Going to merge this and will get a new version released this week 😊 |
Something like An array of files is rather boring for example if you want to upload a webpage with the changelog + autogenerated pages with test results |
Hi @joshdholtz |
Hi @claireduf: How can I avoid the upload of the archive? Zipping and uploading it takes considerable time. Thanks! |
Hi @acecilia |
@claireduf I would go for:
It seems more correct to me to upload the archive if it is requested by the user in the parameters, than upload the archive by default without any request form the user. Zipping and uploading the archive takes a considerable time (in my case, doing this makes the S3 step longer than what gym takes to build my hole app) |
@acecilia thanks for your feedback |
* Add method to upload xcarchive * Use default value from gym for archive path * Change version number * Minor change to comply with files which are not in project directory
First thank you so much for this plugin, it is so useful!
I need to upload xcode archive instead of .ipa, to be more precise I want to send someone an app he has to re-sign and it is easier to re-sign an archive instead of an .ipa.
I add a method to upload archive provided with parameter :archive, this parameter is optional and do not change other features.