Skip to content

Commit

Permalink
chore: Configure AWS credentials for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Diegogtz03 committed Jun 12, 2024
1 parent 4f0c1e4 commit 6b8d85d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/frontend_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,17 @@ jobs:
run: npm install
working-directory: knowx

- name: AWS configure
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set region us-east-1
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: us-east-1
working-directory: knowx

- name: SST Deploy
id: sst_deploy
run: sudo sst deploy --stage dev
Expand Down

0 comments on commit 6b8d85d

Please sign in to comment.