Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 1.03 KB

README.md

File metadata and controls

12 lines (8 loc) · 1.03 KB

MartinK.me

This is the code for my own personal site is published at MartinK.me.

This is a website which operates a simple blog with a backend content management system driven from GitHub. You can view the files which drive the site at https://github.com/martinkearn/Content.

The website deployment is automated using Azure Bicep and Github Actions.

Continuous Deployment

GitHub Actions are used to enforce a continuous deployment approach as follows:

  • PR's to main branch are be deployed to the Azure "dev" resource group; this worklow must suceed for the PR to be closed. This is automated by cd-dev.yml which uses deployment.yml to deploy to the mknet-dev resource group
  • Commits to the main branch (following a merged PR) are deployed to the Azure "prod" resource group. This is automated by cd-prod.yml which uses deployment.yml to deploy to the mknet-prod resource group