From 4fc623df838fc25a90f9904dcb979270a9f724d5 Mon Sep 17 00:00:00 2001 From: Tim Brust Date: Mon, 22 Sep 2025 15:58:59 +0200 Subject: [PATCH] build: enable serverless debugging logging --- .github/workflows/reusable-deploy-job.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-deploy-job.yml b/.github/workflows/reusable-deploy-job.yml index 809b755..ecf450b 100644 --- a/.github/workflows/reusable-deploy-job.yml +++ b/.github/workflows/reusable-deploy-job.yml @@ -88,10 +88,10 @@ jobs: echo "BACKEND_URL_WITHOUT_HTTPS=$(echo ${{ secrets.BACKEND_URL }} | sed 's/^https:\/\///')" >> $GITHUB_ENV - name: Deploy Frontend - run: serverless s3sync bucket --bucket ${{ secrets.COMPANY_ABBREVIATION }}-lara-frontend-${{ inputs.target }} + run: SLS_DEBUG=* serverless s3sync bucket --bucket ${{ secrets.COMPANY_ABBREVIATION }}-lara-frontend-${{ inputs.target }} - name: Deploy Backends - run: serverless deploy --stage ${{ inputs.target }} + run: SLS_DEBUG=* serverless deploy --stage ${{ inputs.target }} - name: Invalidate CloudFront cache for Frontend continue-on-error: true