Skip to content

Commit

Permalink
feat: configure aws credentials for deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ribeirogab committed Sep 14, 2024
1 parent d6f3431 commit 4471b84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
- name: Install Terraform
uses: hashicorp/setup-terraform@v1

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- name: Run deploy-lambda.sh script
run: |
chmod +x ./infra/scripts/deploy-lambda.sh
Expand Down
3 changes: 3 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4471b84

Please sign in to comment.