Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork398
-
Due to the transition GitHub Actions of node version 16 to version 20, it was necessary to change version actions/checkout from 3 to 4. And the code in the branchgh-pages began to be published in the/public directory, and not to theroot of the site. Because of this, the file is actions/checkout is not found and instead of the site I get a 404 error. name:Build Webpackon:workflow_dispatchpermissions:contents:writejobs:build-and-deploy:runs-on:ubuntu-lateststeps: -name:Checkout 🛎️uses:actions/checkout@v4.1.1 -name:Install 📥run:npm ci -name:Build 📦run:npm run build -name:Deploy 🚀uses:JamesIves/github-pages-deploy-action@v4with:folder:distbranch:gh-pages I want to place the files at the root of the branch and I believe that your action packs them |
BetaWas this translation helpful?Give feedback.
All reactions
What are the contents of public/ ? Looks like you may be able to just change folder to dist/public
Replies: 1 comment 2 replies
-
What are the contents of public/ ? Looks like you may be able to just change folder to dist/public |
BetaWas this translation helpful?Give feedback.
All reactions
-
BetaWas this translation helpful?Give feedback.
All reactions
-
THANK YOUUUUUUUU. Thank God. |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1


