From 7ea7d968263750100d84347d00c21b7f2c6b50d4 Mon Sep 17 00:00:00 2001 From: Ricardo Campos Date: Sun, 5 Apr 2026 17:01:39 -0300 Subject: [PATCH] chore: make repository name lowercase --- .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 4129266..9c8f776 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -69,10 +69,10 @@ jobs: fi if [ -z "$backend_image" ]; then - backend_image="ghcr.io/${{ github.repository }}/api:$latest_backend_tag" + backend_image="ghcr.io/rmcampos/tasknote/api:$latest_backend_tag" fi if [ -z "$frontend_image" ]; then - frontend_image="ghcr.io/${{ github.repository }}/app:$latest_frontend_tag" + frontend_image="ghcr.io/rmcampos/tasknote/app:$latest_frontend_tag" fi echo "Resolved backend_image=$backend_image"