Hello all,
I’ve been using electron-builder for a long time to build and update my Electron app using a GitHub repo, but today I’ve realized that updates are no longer working. Every time my app tries to update from GitHub repo it throws this error:
Error: Unable to find latest version on GitHub (https://api.github.com/repos/cityadpro/player/releases/latest), please ensure a production release exists: HttpError: 401
{
"message": "Bad credentials",
"documentation_url": "https://docs.github.com/rest"
}
For some reason I don’t understand, it looks like now GitHub refuses to allow my Electron app to download the new release, but I haven’t changed anything from my app’s update process so I think it must be something related to GitHub itself, but I don’t know what.
I can perfectly access and download from my GitHub repo’s lastest release (https://api.github.com/repos/cityadpro/player/releases/latest) with a browser so I cannot understand why electron-updater can’t.
Does anybody have any clue?
Thank you!