azure cdn

Deploy Hugo static site to Azure Storage and Azure CDN using GitHub Actions

June 23, 2020
Development, Microsoft Azure, DevOps, GitHub
microsoft azure, azure blob storage, azure cli, devops, github actions, hugo, azure cdn

You may have noticed the impressive speed at which this website loads. This is because it was built using a static site generator (Hugo) and deployed to Azure (Blob) Storage, with caching enabled via Azure CDN. This deployment configuration allows us to enjoy one of the cheapest solutions, with an estimated cost of £1 per month for storage and CDN. Right, to the main topic: GitHub Actions # GitHub Actions provides the flexibility to setup a CI/CD workflow, allowing us to automate our build, test and deployment pipelines. ...