"Unhandled rejection Error: 404 Not Found" during artifact publish
See original GitHub issueHey there,
My Linux, OSX, and Windows builds all fail with a 404
error when attempting to publish artifacts. My .travis.yml
and appveyor.yml
files have my GH_TOKEN
, and the token has the repo_deployment
and public_repo
scopes.
This is my first application with electron-builder, so forgive me if I have overlooked something.
Thanks!
Issue Analytics
- State:
- Created 7 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Unhandled Rejection (Error): Request failed with status code ...
Trying to reach it via Insomniac gives me a 'cannot POST /users' error, and the console gives me a 'Unhandled Rejection (Error): Request...
Read more >Github-release plugin fails with "artifact: POST [...] 404 Not ...
Hi,. I have been through Facing issue in publishing artifacts to github releases but was unable to solve my issue.
Read more >Known issues - Relativity Documentation
The following list provides descriptions of known issues in Relativity. For a current list of Relativity enhancements and resolved issues, please visit the ......
Read more >Fix list for IBM WebSphere Application Server V8.5
IBM WebSphere Application Server provides periodic fixes for the base and Network Deployment editions of release V8.5. The following is a complete listing ......
Read more >404 Not Found Error: What It Is and How to Fix It - Airbrake Blog
Some web applications "fake" 404 Not Found Errors when requesting an invalid resource. The server returns a standard 200 OK response code, which ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Well, the problem was an rather silly oversight on my part.
When I first started writing this app, its repo was
nodecg/nodecg-dashboard
. I changed it to be justnodecg/dashboard
, but I forgot to change thename
andgit.url
inpackage.json
. As a result, the deploy script was attempting to deploy tohttps://api.github.com/repos/nodecg/nodecg-dashboard/releases
instead ofhttps://api.github.com/repos/nodecg/dashboard/releases
.Thank you so much for taking the time to help me troubleshoot this issue. My deployments are working now.
I linked to my CI builds in my opening comment, you should be able to see the logs there.