GitHub Pages is a static site hosting service designed to host your personal, organization, or project pages directly from a GitHub repository.
No...
For further actions, you may consider blocking this person and/or reporting abuse
Great article, thank you. I had to do some changes to get it working through trial and error. For example if you have a custom domain you need to write a CNAME file to the dist/build directory before the git commands. Indenting was also broken for me on copy paste.
Hi Sam, thank you for your comment.
Yeah those are some valid issues, glad to read you fixed them on your own.
I remember I created this library which does everything automatically if you use vue-cli -> github.com/Rolanddoda/vue-cli-plug....
However, both the article and the repo are old and nowadays it's not recommended to use vue-cli because it's in Maintenance Mode.
Hi!!!, Great post I have been using the
gh-pages-deploy.js script for a while and it worked perfectly, but for some reason now I get an error when using
require`.Error [ERR_REQUIRE_ESM]: Must use import to load ES Module...
...require() of ES modules is not supported...is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Is this happening to anyone?
Hi, thanks.
Probably it's an error coming from upgrading packages. For instance, chalk and other libraries that
gh-pages-deploy
script uses, are now ESM only!If you want me to help you, please drop me a message on Linkedin with a screenshot of the error you are getting.
Thanks Ronald!
Right, I was trying a lot of things for a while and finally found it by installing an older version of the packages.
Glad to see that you fixed it.
I was also getting some errors in the yml file.
I solved it by updating it following the structure of this file :
github.com/Rolanddoda/vue-cli-plug...
... and the name of my npm script also had a different name
I leave it here written down in case someone else finds it helpful.
Thanks for that. Yes
setup-node@v1.1.0
is deprecated andsetup-node@v2
should be used. I will make sure to update the article. Since you are using vue and you found the vue-cli plugin, then I guess you don't have to follow this article anymore. You can just install the plugin and everything that is in that article will automatically be done for you.Thanks, yes I will take a look at the repo, when I have time, it is more updated and I see that there are more automations to get the user's name and email.
Yup. :)
Excellent post! Thank you! If I may make a recommendation, removing the first layer of indentation in the code block would help a lot I think. It took me a few minutes to figure out why my .yml was being rejected, but it was because everything except the
name:
line was indented too much.Still, this got me up and running quickly, with a few minor tweaks to improve things for my workflow! Unfortunately, my user page has to deploy on
master
so I'm doing that. I might move my personal website to a different repo though, because being able to usegh-pages
without pollutingmaster
would definitely be preferable.Thank you for posting this great article. Just a few additional notes you might even want to put in the article.
1) I am fairly sure github pages has no way of implementing
History
mode, so it is important that if you are using the Vue router, it is set like so2) For the script to deploy to github pages from the local machine, I would advise checking if there are uncommitted changes first with something like
3) It might be worth putting the final git commands in a
finally
block so you always end up back on master. Also note below the rm command is replaced by rimraf - rm is platform specific (and certainly will not work on Windows) and rimraf deals with this for us.Hi Brent and thank you for this comment.
As I said in the end of the article, I want to keep the script very minimal so anyone understands it and can modify it. There is so many things to add to that script and to the whole article itself, but I wanted to go with simplicity.
Here are my answers to your notes:
1) There is a way to get the History mode work with github pages. See -> github.com/Rolanddoda/vue-router-g...
However, going with hash mode, is something that you can easily do, but it's out of the scope of this article on automating deployment to github pages by using github actions. (I would had to talk about vue router history mode and hash mode).
2) It's worth noting that the script will run in github actions environment after you have pushed on master. So no need to check for uncommitted changes.
3) For the same reason as on the second note, no need to add a finally block and also the rm command will run in ubuntu as I've defined in the github actions workflow.
Again, there are so many things to add on that article but I want to keep it simple so anyone can easily extend it. I hope I have helped people on how to take advantage of github actions and github pages.
Thanks for taking the time to comment Brent,
With Respect, Roland.
Thank you very much. It helped me very much.
Glad to read that it helped you 🎉.
If you are using vue.js though I have created a vue-cli plugin which automates everything and it's literally a zero-config solution. Check it out -> github.com/Rolanddoda/vue-cli-plug....
I have in mind some improvements to do there but haven't found the time yet.
Small note for those who use
yarn
(like me) and not npm. You will getnpm ERR! cipm can only install packages when your package.json and package-lock.json or npm-shrinkwrap.json are in sync.
because obviously
package-lock.json
doesn't exist. You either need to create package-lock bynpm install
or change a bit last lines ofgh-pages-deploy.yml
toThank you Philipp.
Hello, Thank you for the great tutorial.
one problem I have is
rm -r dist
doesn't work! it says that rm is not recognized and I tried replacing it withdel
so it asked me to delete everything insidedist
and I said yes.and nothing is working :(
Can you please help?
I have to see what and where the issue is. Feel free to send me an email at rolanddoda2014@gmail.com so I can help you to fix the issue
Thank you for the article. I've published many websites on gh-pages using this. I was getting an error while deploying using Github actions and it turns out that the setup-node version has been updated and using
setup-node@v1.1.0
will throw an error. I used the updated versionsetup-node@v2
and it worked fine.Excellent post! Thank you, Roland.
As Nathan Snyder pointed out, the .yml block doesn't work if you copy from the first character to the last as there is an indentation on the entire code block that is not immediately apparent. Though this is a minor detail, it might help other less experienced programmers (like myself) to take note of this.
I got mine working after tweaks here and there. Thank you sooo much!
Thanks for the post, Roland,
Especially arrows on the images are helpful as people don't have to scan the image to find out where.
Glad to read that you liked the article and the way it's written Sung. It took me some days (considering I am working full-time) to finish it but I always try to make good articles. So far I have got 3 emails from people thanking me and they are amazed about the automation. Wondering if you have tried it.
I've tried gh pages & actions but only separately.
Should an opportunity comes, then I will try it :)
Thanks for the post, Roland, nice done!
Is exactly what i was looking for, and save me a lot of time for sure :)
Only with the intention of improvement, and for others who may be had the same issue,
there is a little mistake in this line, its miss a "-" in the word worktree:
git --worktree dist add --all Docs (for react: replace dist with build)
My congrats for the site aswell. Shum Faleminderit!
Ahh yes, instead of
--work-tree
was--worktree
without the dash. Thanks Javier. The typo is already fixed now.Hey Roland, thanks for the article!
My GitHub pages shows me the readme.md file instead of my website. I found that the reason is that the index.html file is not in the root directory, but in public directory. Locating index.html in public directory is vue's default. What can I do to see the whole website and not just the readme.md file?
Hi, I need to investigate what is going on there in order to know for sure what is happening.
Please, DM me on Linkedin -> linkedin.com/in/roland-doda/
or send me an email at rolanddoda2014@gmail.com
Thanks for the awesome post, it helps me a lot.
What an awesome article. Thank you Roland Doda for you effort.
Glad to read that you liked it :)
Very nice post mate thank you! Excellent work!!!
Glad to read that you liked it Max.
Thank you, just yesterday I searched for this information on Google, but found it here :)
Thanks for the comment Daniil
Nice one, thanks for sharing.
Thanks for the comment Arthur
Links are always nice.
I also use similar? method to deploy unrelated brach to Heroku.