I have a privately distributed app in electron, which uses my own git account (private repository) for update purposes.
I'm using GH_TOKEN.txt and this method;
autoUpdater.setFeedURL({
provider: 'github',
repo: '****',
owner: '****',
private: true,
token: "****"
})
Now I would like to change this update server to another GitHub account, but I need to update the previous repo with this update so for the next update all the apps installed can use new one in the future.
I publish updates from the terminal, how can I publish a package to a server with a different update server?