From 6cc4d526f1503b3f416db7d54bec4f2f45598af8 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Mon, 16 Mar 2026 22:16:05 +0000 Subject: [PATCH] add GitHub Pages for post-mortems - Index page listing all incident reports - GHA workflow deploys post-mortems/ on push - Available at viktorbarzin.github.io/infra/ --- .github/workflows/deploy-postmortems.yml | 32 ++++++ post-mortems/index.html | 122 +++++++++++++++++++++++ 2 files changed, 154 insertions(+) create mode 100644 .github/workflows/deploy-postmortems.yml create mode 100644 post-mortems/index.html diff --git a/.github/workflows/deploy-postmortems.yml b/.github/workflows/deploy-postmortems.yml new file mode 100644 index 00000000..d9c19b4a --- /dev/null +++ b/.github/workflows/deploy-postmortems.yml @@ -0,0 +1,32 @@ +name: Deploy Post-Mortems to GitHub Pages + +on: + push: + branches: [master] + paths: + - 'post-mortems/**' + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: pages + cancel-in-progress: false + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/configure-pages@v5 + - uses: actions/upload-pages-artifact@v3 + with: + path: post-mortems + - id: deployment + uses: actions/deploy-pages@v4 diff --git a/post-mortems/index.html b/post-mortems/index.html new file mode 100644 index 00000000..f8bcb447 --- /dev/null +++ b/post-mortems/index.html @@ -0,0 +1,122 @@ + + + + + +Post-Mortems — viktorbarzin.me + + + + + + +

Post-Mortems

+

Incident reviews for the viktorbarzin.me Kubernetes cluster

+ + + + \ No newline at end of file