check input and outputs

This commit is contained in:
Jun-te Kim 2026-02-03 16:34:04 +00:00
parent 8a24ddce29
commit 9e4a372dd6
2 changed files with 17 additions and 0 deletions

View file

@ -86,3 +86,11 @@ jobs:
--output text)
echo "image_digest=$DIGEST" >> "$GITHUB_OUTPUT"
- name: Debug job outputs
run: |
echo "repo(step)=${{ steps.repo.outputs.ecr_repo_url }}"
echo "digest(step)=${{ steps.digest.outputs.image_digest }}"
echo "repo(job)=${{ jobs.build.outputs.ecr_repo_url }}"
echo "digest(job)=${{ jobs.build.outputs.image_digest }}"

View file

@ -38,6 +38,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Debug inputs
run: |
echo "lambda_name=${{ inputs.lambda_name }}"
echo "lambda_path=${{ inputs.lambda_path }}"
echo "stage=${{ inputs.stage }}"
echo "ecr_repo_url=${{ inputs.ecr_repo_url }}"
echo "image_digest=${{ inputs.image_digest }}"
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}