Skip to content

Commit

Permalink
feat: add Configure AWS credentials to the actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ShauryaAg committed Oct 22, 2021
1 parent 66ccde0 commit a302051
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ inputs:
runs:
using: "composite"
steps:
- 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: ${{ secrets.AWS_REGION }}
- run: chmod +x ./scripts/get_env.sh && ./scripts/get_env.sh
shell: bash
env:
Expand Down

0 comments on commit a302051

Please sign in to comment.