We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce98477 commit 4a033acCopy full SHA for 4a033ac
.github/workflows/pull-request-build.yaml.yml
@@ -10,11 +10,11 @@ concurrency:
10
11
env:
12
# constants
13
+ IAM_ROLE_ARN: 'arn:aws:iam::246442084943:role/AwsSdkCppGitHubRole'
14
DOWNLOAD_FOLDER: '.build-scripts/'
15
SCRIPT_LOCATION: 'workflows/start-pull-request-build/pull-request-build-v1.sh'
16
17
# custom variables
- IAM_ROLE_ARN: 'AwsSdkCppGitHubRole'
18
ROLE_SESSION_DURATION_SECONDS: 7200
19
20
jobs:
@@ -30,7 +30,7 @@ jobs:
30
- name: Configure AWS Credentials
31
uses: aws-actions/configure-aws-credentials@main
32
with:
33
- role-to-assume: '$IAM_ROLE_ARN'
+ role-to-assume: ${{ env.IAM_ROLE_ARN }}
34
role-session-name: PullRequestBuildGitHubAction
35
role-duration-seconds: '$ROLE_SESSION_DURATION_SECONDS'
36
aws-region: us-west-2
0 commit comments