You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When providing an empty string to override the default env var DSYM_OUTPUT_PATH, the plugin complains that the path is invalid.
It looks like the check whether to upload the dSYM is just checking for a nil dsym_file string, but the string can never be nil since it would be defaulted to the DSYM_OUTPUT_PATH.
ifdsym_filedsym_file_basename=File.basename(dsym_file)dsym_file_name="#{url_part}#{dsym_file_basename}"dsym_file_data=File.open(dsym_file,'rb')dsym_url=self.upload_file(s3_client,s3_bucket,app_directory,dsym_file_name,dsym_file_data,acl,server_side_encryption,download_endpoint,download_endpoint_replacement_regex)# Setting action and environment variablesActions.lane_context[SharedValues::S3_DSYM_OUTPUT_PATH]=dsym_urlENV[SharedValues::S3_DSYM_OUTPUT_PATH.to_s]=dsym_urlend
The text was updated successfully, but these errors were encountered:
When providing an empty string to override the default env var DSYM_OUTPUT_PATH, the plugin complains that the path is invalid.
It looks like the check whether to upload the dSYM is just checking for a nil
dsym_file
string, but the string can never be nil since it would be defaulted to the DSYM_OUTPUT_PATH.The text was updated successfully, but these errors were encountered: