pages build and deployment action no longer being run by GitHub Pages after push to main branch causing a 404? #153969
-
Select Topic AreaQuestion BodyAs of sometime yesterday I haven't worked on the website for a while but as of trying to continue working today, I had to update my deploy file to be able to continue due to an error on an outdated action within it's file. At the same time my Website no longer works displaying a standard GitHub Pages 404 Message: This occurs even if I manually deploy from a branch that is using a commit where previously it was working. (Using the Pages settings) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
In the end I solved it myself like so:
What I think happened is that this part happened automatically previously but as some update I need to do this manually. |
Beta Was this translation helpful? Give feedback.
In the end I solved it myself like so:
GitHub Pages settings
Build and deployment
setbranch
togh-pages
npm run build
gh-pages
branch using:npx gh-pages -d dist
What I think happened is that this part happened automatically previously but as some update I need to do this manually.