From 6d9a6cd815ed41a395cb08676ae6e5901ebcb18d Mon Sep 17 00:00:00 2001 From: Necip Allef Date: Wed, 11 Sep 2024 19:27:06 +0300 Subject: [PATCH] ci: fix e2e workflow file --- .github/workflows/e2e_test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index 38c1415a..307de0ec 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -22,11 +22,11 @@ jobs: - name: configure AWS credentials uses: aws-actions/configure-aws-credentials@v4 with: - role-to-assume: {{secrets.AWS_E2E_ROLE_ARN}} - aws-region: {{secrets.AWS_E2E_REGION}} + role-to-assume: ${{secrets.AWS_E2E_ROLE_ARN}} + aws-region: ${{secrets.AWS_E2E_REGION}} - name: Trigger AWS CodePipeline run: | - codepipeline_execution_id=$(aws codepipeline start-pipeline-execution --name {{secrets.AWS_E2E_CODEPIPELINE_NAME}} --query 'pipelineExecutionId' --output text) + codepipeline_execution_id=$(aws codepipeline start-pipeline-execution --name ${{secrets.AWS_E2E_CODEPIPELINE_NAME}} --query 'pipelineExecutionId' --output text) echo "Pipeline execution ID: $codepipeline_execution_id" echo "codepipeline_execution_id=$codepipeline_execution_id" >> $GITHUB_ENV - name: Poll Pipeline Status