Skip to content

Commit

Permalink
install aws cli in frontend pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed May 12, 2024
1 parent ffd8f0e commit 4363a04
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ jobs:
cp frontend/.env.prod.example frontend/.env.prod
cd frontend && yarn build --mode ${{ vars.APP_ENV }}
- name: Install AWS CLI
uses: unfor19/install-aws-cli-action@v1
with:
version: 2
arch: amd64

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@ jobs:
cp frontend/.env.staging.example frontend/.env.staging
cd frontend && yarn build --mode ${{ vars.APP_ENV }}
- name: Install AWS CLI
uses: unfor19/install-aws-cli-action@v1
with:
version: 2
arch: amd64

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down

0 comments on commit 4363a04

Please sign in to comment.