Skip to content

Commit

Permalink
Update docker-build.yml
Browse files Browse the repository at this point in the history
debugging
  • Loading branch information
Tomas-Deane authored Jun 3, 2024
1 parent e7a826a commit f1c0320
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:
uses: actions/checkout@v2

- name: Debug AWS Secrets
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
run: |
echo "AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}"
echo "AWS_SECRET_ACCESS_KEY length: ${#AWS_SECRET_ACCESS_KEY}"
echo "AWS_REGION: ${{ secrets.AWS_REGION }}"
echo "AWS_ACCESS_KEY_ID: ${#AWS_ACCESS_KEY_ID} characters long"
echo "AWS_SECRET_ACCESS_KEY: ${#AWS_SECRET_ACCESS_KEY} characters long"
echo "AWS_REGION: ${AWS_REGION}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand Down

0 comments on commit f1c0320

Please sign in to comment.