mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
check input and outputs
This commit is contained in:
parent
8a24ddce29
commit
9e4a372dd6
2 changed files with 17 additions and 0 deletions
8
.github/workflows/_build_image.yml
vendored
8
.github/workflows/_build_image.yml
vendored
|
|
@ -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 }}"
|
||||
|
||||
|
|
|
|||
9
.github/workflows/_deploy_lambda.yml
vendored
9
.github/workflows/_deploy_lambda.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue