From 2ba13c620e83d5c06df54ed74bc425934025b53a Mon Sep 17 00:00:00 2001 From: WayneGoosen <13494899+WayneGoosen@users.noreply.github.com> Date: Mon, 17 Jun 2024 20:52:10 +0200 Subject: [PATCH] feat: add streamlit deployment guide part 2 draft --- ...t-deployment-guide-part-2-gitHub-workflow.mdx | 16 ++++++++++++++++ src/data/categories.ts | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 src/content/blog/streamlit-deployment-guide-part-2-gitHub-workflow.mdx diff --git a/src/content/blog/streamlit-deployment-guide-part-2-gitHub-workflow.mdx b/src/content/blog/streamlit-deployment-guide-part-2-gitHub-workflow.mdx new file mode 100644 index 0000000..1abb4ab --- /dev/null +++ b/src/content/blog/streamlit-deployment-guide-part-2-gitHub-workflow.mdx @@ -0,0 +1,16 @@ +--- +heroImage: /src/assets/images/bg.jpg +category: CI/CD +description: >- + Configure a GitHub workflow to build the Dockerfile and publish the image to + ghcr.io +pubDate: 2024-06-17T22:00:00.000Z +draft: true +tags: + - github actions + - github + - docker +title: >- + Streamlit Deployment Guide Part 2: GitHub Workflow for Building and Publishing + to ghcr.io +--- diff --git a/src/data/categories.ts b/src/data/categories.ts index 8f7e3d8..e9e3429 100644 --- a/src/data/categories.ts +++ b/src/data/categories.ts @@ -1,2 +1,2 @@ // List of categories for blog posts, Development, CI/CD -export const CATEGORIES = ['DevOps', 'Containers'] as const +export const CATEGORIES = ['DevOps', 'Containers', 'CI/CD'] as const