DEV Community

Discussion on: Deploy your projects to Github Pages with GitHub Actions

Collapse
 
noamtamim profile image
Noam Tamim

Please explain -- why should I use it? GitHub Pages are already automatically deployed. What am I missing?

Collapse
 
pierresaid profile image
pierresaid • Edited

For project like React, Vue or Angular you will need to build the project to have the html,css and js files that Github Pages can serve.

Github Actions will automate this step for you.

Collapse
 
noamtamim profile image
Noam Tamim

You mean, for sites that are not simple Jekyll? Got it.