Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert to use SDK CI role
  • Loading branch information
xiazhvera committed Jun 16, 2025
commit 2f0aab40ef6b9f500b57424fa57a31b346ced1d2
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:
RUN: ${{ github.run_id }}-${{ github.run_number }}
AWS_DEFAULT_REGION: us-east-1
SDK_V1_CI_ROLE: ${{ secrets.CI_SDK_V1_ROLE_ARN }}
CRT_CI_ROLE: arn:aws:iam::123124136734:role/CRT_CI_Role

permissions:
id-token: write # This is required for requesting the JWT
Expand Down Expand Up @@ -42,7 +41,7 @@ jobs:
id: creds
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ env.CRT_CI_ROLE }}
role-to-assume: ${{ env.SDK_V1_CI_ROLE }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
output-credentials: true
- name: Build ${{ env.PACKAGE_NAME }} + consumers
Expand All @@ -53,4 +52,3 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ steps.creds.outputs.aws-access-key-id }}
AWS_SECRET_ACCESS_KEY: ${{ steps.creds.outputs.aws-secret-access-key }}
AWS_SESSION_TOKEN: ${{ steps.creds.outputs.aws-session-token }}
AWS_REGION: ${{ env.AWS_DEFAULT_REGION }}