From de694ed665f92dcedd95b3dea080eaa76653f7a5 Mon Sep 17 00:00:00 2001 From: killer-cf Date: Wed, 26 Nov 2025 10:25:30 -0300 Subject: [PATCH 1/2] 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 From 71959f65536a193d72d977f56b3d45ec3e020c1a Mon Sep 17 00:00:00 2001 From: killer-cf Date: Wed, 26 Nov 2025 10:28:11 -0300 Subject: [PATCH 2/2] fix: update branch name in deploy workflow configuration - Changed the branch name from 'main' to 'master' in the GitHub Actions deploy workflow to align with repository conventions. --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 74d79fa..ff88ef6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,7 +2,7 @@ name: Build Docker images on: push: - branches: ["main"] + branches: ["master"] jobs: build-and-push-dockerfile-image: