Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
danishkhan24 committed Aug 28, 2024
1 parent 3cd6f79 commit b42a557
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
ECR_Region:
runs-on: ubuntu-latest
outputs:
AWS_REGION: ${{steps.step1.outputs.AWS_REGION}}
aws_region: ${{steps.step1.outputs.aws_region}}
steps:
- name: Print inputs passed to the reusable workflow
id: step1
run: |
echo "::set-output name=AWS_REGION::${{env.AWS_REGION}}"
echo "AWS_REGION: $AWS_REGION"
echo "::set-output name=aws_region::${{secrets.AWS_REGION}}"
echo "aws_region: $AWS_REGION"
ecr_login:
needs: ECR_Region
uses: ./.github/workflows/ecr-login.yml
with:
region: ${{ needs.ECR_Region.outputs.AWS_REGION }}
region: ${{ needs.ECR_Region.outputs.aws_region }}

build_and_push_frontend:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b42a557

Please sign in to comment.