Skip to content

Commit 008c21d

Browse files
fix: Correct syntax for AWS credentials file creation in deploy workflow
1 parent fd9cfc1 commit 008c21d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
shell: bash
3838
run: |
3939
mkdir -p ~/.aws
40-
echo ${{ secrets.AWS_CREDENTIALS_B64 }} | base64 -d > ~/.aws/credentials
40+
echo "${{ secrets.AWS_CREDENTIALS_B64 }}" | base64 -d > ~/.aws/credentials
4141
4242
- name: Configure AWS credentials
4343
uses: aws-actions/configure-aws-credentials@v4

0 commit comments

Comments
 (0)