From 388b74f58a32cdcf14b2a996de82f81bfbbe9faa Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 3 Feb 2026 17:37:18 +0000 Subject: [PATCH] more logs --- .github/workflows/deploy_terraform.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 38f841e7..274fc196 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -80,6 +80,26 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + # ============================================================ + # 2.5️⃣ Check Address2UPRN image outputs + # ============================================================ + check_address2uprn_image: + needs: address2uprn_image + runs-on: ubuntu-latest + + steps: + - name: Dump image outputs + run: | + echo "ECR repo URL:" + echo "${{ needs.address2uprn_image.outputs.ecr_repo_url }}" + echo + echo "Image digest:" + echo "${{ needs.address2uprn_image.outputs.image_digest }}" + echo + echo "Full image URI:" + echo "${{ needs.address2uprn_image.outputs.ecr_repo_url }}@${{ needs.address2uprn_image.outputs.image_digest }}" + + # ============================================================ # 3️⃣ Deploy Address 2 UPRN Lambda # ============================================================