electron-updater-example icon indicating copy to clipboard operation
electron-updater-example copied to clipboard

Not found latest.yml

Open rahmatkruniawan opened this issue 8 years ago • 3 comments

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 yaml2 yml

rahmatkruniawan avatar Aug 09 '17 16:08 rahmatkruniawan

@develar any idea?

iffy avatar Aug 09 '17 17:08 iffy

You must config the token in the header, eg

autoUpdater.setFeedURL({
  provider: 'github',
  token: 'YOU-TOKEN',
  owner: '****',
});

nicholaslee119 avatar Dec 11 '17 02:12 nicholaslee119

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. info

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

senwa avatar Jun 23 '18 10:06 senwa