Skip to content

Commit

Permalink
configure aws credentials step
Browse files Browse the repository at this point in the history
  • Loading branch information
noahgsolomon committed Jul 27, 2024
1 parent 99daafb commit aa470e3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ jobs:
- name: Install Dependencies
run: bun install --frozen-lockfile

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

- name: SST Deploy
run: bunx sst deploy --stage production
env:
Expand All @@ -38,6 +45,4 @@ jobs:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
HOSTED_ZONE_ID: ${{ secrets.HOSTED_ZONE_ID }}

0 comments on commit aa470e3

Please sign in to comment.