2

Usually, I use Netlify to deploy my React app which auto-publishes the code for every GitHub push.

Can I do something similar with shared hosting like GoDaddy server, because for every change I have to make a build and then have to manually upload all the build files to the server by using file manager.

Is there any possibility to automate this process?

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
Naima Ghulam.M
  • 361
  • 3
  • 9

1 Answers1

2

Yes, you can do it; you can use the GitHub actions to deploy using something like rsync or something like https://github.com/SamKirkland/FTP-Deploy-Action

Read the following tutorial, which I think will help you.

https://dev.to/madalitsonyemba/continuous-deployment-on-shared-hosting-with-github-actions-5agi

gfirem
  • 328
  • 3
  • 8