August 19, 2020
Publishing a Hugo Site With Github Actions
Storing your Hugo site in a Github repository makes it easy to automate re-generating and uploading your site every time you create a new commit. I'll assume you have a Hugo site in a Github repository already & walk through the steps to configure Github Actions to generate the site & upload it using rsync over SSH, with key-based authentication:
Create a Workflow
In the root directory of your Hugo site, create a .
Read more