Skip to content

Commit 6d9a6cd

Browse files
committed
ci: fix e2e workflow file
1 parent f089983 commit 6d9a6cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
- name: configure AWS credentials
2323
uses: aws-actions/configure-aws-credentials@v4
2424
with:
25-
role-to-assume: {{secrets.AWS_E2E_ROLE_ARN}}
26-
aws-region: {{secrets.AWS_E2E_REGION}}
25+
role-to-assume: ${{secrets.AWS_E2E_ROLE_ARN}}
26+
aws-region: ${{secrets.AWS_E2E_REGION}}
2727
- name: Trigger AWS CodePipeline
2828
run: |
29-
codepipeline_execution_id=$(aws codepipeline start-pipeline-execution --name {{secrets.AWS_E2E_CODEPIPELINE_NAME}} --query 'pipelineExecutionId' --output text)
29+
codepipeline_execution_id=$(aws codepipeline start-pipeline-execution --name ${{secrets.AWS_E2E_CODEPIPELINE_NAME}} --query 'pipelineExecutionId' --output text)
3030
echo "Pipeline execution ID: $codepipeline_execution_id"
3131
echo "codepipeline_execution_id=$codepipeline_execution_id" >> $GITHUB_ENV
3232
- name: Poll Pipeline Status

0 commit comments

Comments
 (0)