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