Sentry-cli Error on upload-dif

on upload-dif I get the following error:

sentry-cli --auth-token xxx upload-dif --org xxx --project xxx --log-level debug  
  DEBUG   2020-08-23 14:30:12.053303 +02:00 sentry-cli version: 1.55.2, platform: "darwin", architecture: "x86_64"
  INFO    2020-08-23 14:30:12.053602 +02:00 sentry-cli was invoked with the following command line: "sentry-cli" "--auth-token" "xxx" "upload-dif" "--org" "xxx" "--project" "xxx" "--log-level" "debug"
  INFO    2020-08-23 14:30:12.053845 +02:00 Issuing a command for Organization: xxx Project: xxx
error: EOF while parsing a value at line 1 column 0
  DEBUG   2020-08-23 14:30:17.926488 +02:00 client close; no transport to shut down  (from sentry)
  INFO    2020-08-23 14:30:17.926734 +02:00 Skipping update nagger update check

currently I can not upload my symbols

it was working fine for months. Stopped working now.
anyone had this and knows what might be the problem?

this was part of a fastlane lane.

  download_dsyms
  sentry_upload_dsym(
    auth_token: '..',
    org_slug: '..',
    project_slug: '..',
  )
  end

I managed to work out a workaround. It seems to have something to do with the directory containing the dSyms. This usually was the main directory of my project.

If I download the dSyms to a separate directory “dSyms” and do a

 sentry-cli upload-dif --project *project* .

from there it works fine.

However I was not able to get a working lane with fastlane.
tried:

  download_dsyms(output_directory: "dSyms")
  sentry_upload_dsym(
    dsym_path: "dSyms",
    auth_token: '..',
    org_slug: '..',
    project_slug: '..',
 )

not working (error: EOF while parsing a value at line 1 column 0)

download_dsyms(output_directory: "dSyms")
Dir.chdir("../dSyms") do
sentry_upload_dsym(
  dsym_path: ".",
  auth_token: '..',
  org_slug: '..',
  project_slug: '..',
)
end

not working (error: EOF while parsing a value at line 1 column 0)