skip to Main Content

When the release pipeline run end up with this error
RangeError [ERR_INVALID_OPT_VALUE]: The value "4294967295" is invalid for option "size".
I don’t know what means this error

task failed
Log of the task failed when release run

2

Answers


  1. I had the same issue when trying to deploy a node app to Azure App Service from release pipeline. Not sure what the error means as there are no further details about it but I resolved it by using "Zip Deploy" deployment method and "Continue on error"
    enter image description here

    Login or Signup to reply.
  2. Same issue for me using Web Deploy to a nodejs app service.
    Web Deploy worked at first, until we added some packages in our package.json (e.g. "@fortawesome/free-brands-svg-icons")

    Then our release pipeline suddenly outputs "64-bit = +" in the deployment log.
    If we remove the packages, the "64-bit = +" is gone, and our Web Deploy works again.

    Image of log from Release pipeline

    1

    Not sure how to resolve it, but in our case we used Zip Deploy instead like @Ari Gunawan recommended.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search