Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kang-heewon committed Jan 20, 2024
1 parent 45c19ab commit 285a8d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ runs:
- name: Setup Profile
shell: bash
run: |
aws configure set region ${{ inputs.region }} --profile ${{ inputs.profile-name }}
aws configure set aws_access_key_id ${{ inputs.access-key }} --profile ${{ inputs.profile-name }}
aws configure set aws_secret_access_key ${{ inputs.secret-key }} --profile ${{ inputs.profile-name }}
aws configure set region ${{ inputs.region }} --profile ${{ inputs.profile }}
aws configure set aws_access_key_id ${{ inputs.access-key }} --profile ${{ inputs.profile }}
aws configure set aws_secret_access_key ${{ inputs.secret-key }} --profile ${{ inputs.profile }}
- name: Reset AWS Environment Variables
shell: bash
Expand All @@ -46,4 +46,4 @@ runs:
- name: Check Profile
shell: bash
run: aws sts get-caller-identity --profile ${{ inputs.profile-name }}
run: aws sts get-caller-identity --profile ${{ inputs.profile }}

0 comments on commit 285a8d1

Please sign in to comment.