Technical notes on setup, automation, and the tools behind my projects
Hugo Site Deployment with GitHub Actions
Deploying a static site manually every time can be a boring and error-prone task. If you’re using Hugo, a static site generator, and host your site with a provider like Hostinger, you might be used to generating the site with hugo and dragging the contents of the public/ folder into a file manager or FTP client. Let’s change that. In this guide, I’ll show you how to automate this process using GitHub Actions. Every time you push to your main branch, your site will be automatically built and uploaded to your server via FTP. ...