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
With the new version 2.0.0, the method upload_file expects 9 arguments but is called with only 7.
upload_file
In version 1.8.3
fastlane-plugin-s3/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb
Line 503 in 20ae0fe
In version 2.0.0
Line 559 in b2a05da
The call site does not change and still pass only 7 arguments:
Line 529 in b2a05da
Here is a callstack
ArgumentError: [!] wrong number of arguments (given 7, expected 9) .../fastlane-plugin-aws_s3-2.0.0/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb:559:in `upload_file' .../fastlane-plugin-aws_s3-2.0.0/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb:529:in `block in upload_files' .../fastlane-plugin-aws_s3-2.0.0/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb:524:in `each' .../fastlane-plugin-aws_s3-2.0.0/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb:524:in `upload_files' .../fastlane-plugin-aws_s3-2.0.0/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb:103:in `run' .../fastlane-2.178.0/fastlane/lib/fastlane/runner.rb:263:in `block (2 levels) in execute_action' .../fastlane-2.178.0/fastlane/lib/fastlane/actions/actions_helper.rb:69:in `execute_action' .../fastlane-2.178.0/fastlane/lib/fastlane/runner.rb:255:in `block in execute_action' .../fastlane-2.178.0/fastlane/lib/fastlane/runner.rb:229:in `chdir' .../fastlane-2.178.0/fastlane/lib/fastlane/runner.rb:229:in `execute_action' .../fastlane-2.178.0/fastlane/lib/fastlane/runner.rb:157:in `trigger_action_by_name' .../fastlane-2.178.0/fastlane/lib/fastlane/other_action.rb:23:in `method_missing'
The text was updated successfully, but these errors were encountered:
Have the same error - I am calling aws_s3 via:
aws_s3
aws_s3( bucket: "…", region: "…", files: [".zip"], app_directory: "…" )
using it it distribute a zipped Mac app. This used to work in previous versions.
Sorry, something went wrong.
Ah sorry! Will fix will fix
Successfully merging a pull request may close this issue.
With the new version 2.0.0, the method
upload_file
expects 9 arguments but is called with only 7.In version 1.8.3
fastlane-plugin-s3/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb
Line 503 in 20ae0fe
In version 2.0.0
fastlane-plugin-s3/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb
Line 559 in b2a05da
The call site does not change and still pass only 7 arguments:
fastlane-plugin-s3/lib/fastlane/plugin/aws_s3/actions/aws_s3_action.rb
Line 529 in b2a05da
Here is a callstack
The text was updated successfully, but these errors were encountered: