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 # ============================================================