From 18635e70f33523c1c6c999a64c3339fe4242f07e Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Mon, 5 Dec 2022 11:48:38 +0530 Subject: [PATCH] Fix CI step name (#1681) It is not just test, it will use prod creds when using Production Environment ## Description ## Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Test - [x] :computer: CI/Deployment - [ ] :hamster: Trivial/Minor ## Issue(s) * # ## Test Plan - [ ] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/ci.yml | 2 +- .github/workflows/website-publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7aff992f2..e15fd5ac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -423,7 +423,7 @@ jobs: name: website path: website/build - - name: Configure AWS credentials from Test account + - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1 with: role-to-assume: ${{ secrets.AWS_IAM_ROLE }} diff --git a/.github/workflows/website-publish.yml b/.github/workflows/website-publish.yml index f3c27bee0..6a8b7f285 100644 --- a/.github/workflows/website-publish.yml +++ b/.github/workflows/website-publish.yml @@ -102,7 +102,7 @@ jobs: name: website path: website/build - - name: Configure AWS credentials from Test account + - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1 with: role-to-assume: ${{ secrets.AWS_IAM_ROLE }}