electron-updater-example
electron-updater-example copied to clipboard
Not found latest.yml
I allready upload my installer and latest.yml but I did it manually not from command line.
When i open my Apps . THat git me some error

@develar any idea?
You must config the token in the header, eg
autoUpdater.setFeedURL({
provider: 'github',
token: 'YOU-TOKEN',
owner: '****',
});
i get the same problem when i set the feedUrl with domain like this:
const feedUrl = "http://www.XXX.net/userFile/win32";
autoUpdater.setFeedURL(feedUrl);
when the program checkupdate ,it cannot find the last.yml.

but ,when i set the feedUrl with ip like this:
const feedUrl = "http://182.xxx.xxx.xxx/userFile/win32";
autoUpdater.setFeedURL(feedUrl);
all works fine.i dont know why,is there something with DNS parse? my server is two tomcat balanced with nginx+memcache and my electron-builder version is 20.15.1,electron-updater version is 2.21.10