diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index af8a093..98f6eb7 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -235,12 +235,12 @@ jobs: fi # --- Pull specific backend image version --- - echo "Pulling backend image ${{ gitea.sha }}..." + echo "Pulling backend image ${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:${{ gitea.sha }}..." docker pull ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:${{ gitea.sha }}} echo "Backend pull complete." # --- Pull specific frontend image version --- - echo "Pulling frontend image ${{ gitea.sha }}..." + echo "Pulling frontend image ${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia-frontend:${{ gitea.sha }}..." docker pull ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia-frontend:${{ gitea.sha }} echo "Frontend pull complete."