From de694ed665f92dcedd95b3dea080eaa76653f7a5 Mon Sep 17 00:00:00 2001 From: killer-cf Date: Wed, 26 Nov 2025 10:25:30 -0300 Subject: [PATCH] fix: update Docker image context and tags in deploy workflow - Changed the Docker build context to './apps/web' for better organization. - Updated the image tag from 'namespace/example:latest' to 'killercf/sgc:latest' to reflect the correct repository. --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0a40e7d..74d79fa 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,10 +21,10 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v4 with: - context: . + context: ./apps/web file: ./Dockerfile push: true # Make sure to replace with your own namespace and repository tags: | - namespace/example:latest + killercf/sgc:latest platforms: linux/amd64 \ No newline at end of file