Skip to content

Commit b97bdfa

Browse files
committed
add s3 credentials in deploy.yml
1 parent 0cdffd3 commit b97bdfa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ jobs:
1818
- name: Install dependencies
1919
run: make install
2020

21+
- name: Configure AWS credentials
22+
uses: aws-actions/configure-aws-credentials@v4
23+
with:
24+
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
25+
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
26+
aws-region: ${{secrets.AWS_AWS_REGION}}
27+
2128
- name: Run tests
2229
run: make test
2330

0 commit comments

Comments
 (0)