From 47e584d7d3c91ef83d0837913b007c347346a9d5 Mon Sep 17 00:00:00 2001 From: Uzaeir Khan Date: Tue, 9 Jan 2024 00:26:21 +0100 Subject: [PATCH 1/2] chore: update main.yml --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c6a800d..c03455d5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,11 +55,11 @@ jobs: - name: Aggregate JSON Data into one File id: read_variables run: | - workflow=${{ github.workflow }} - workspace_path=/home/runner/work/e2e-system-tests/e2e-system-tests + workflow="${{ github.workflow }}" + workspace_path="${{ github.workspace }}" - chmod +x ${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh - ${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh \ + chmod +x "${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh" + "${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh" \ "${workflow}" \ "${{ inputs.cypress_brb }}" \ "${{ inputs.cypress_default }}" \ From c32c092a07563ba726fc9235664409c9eb4bb565 Mon Sep 17 00:00:00 2001 From: Uzaeir Khan Date: Tue, 9 Jan 2024 01:00:11 +0100 Subject: [PATCH 2/2] chore: removed quotation from script --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c03455d5..09a67b15 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -58,8 +58,8 @@ jobs: workflow="${{ github.workflow }}" workspace_path="${{ github.workspace }}" - chmod +x "${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh" - "${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh" \ + chmod +x ${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh + ${workspace_path}/e2e-system-tests/scripts/aggregate-json-files.sh \ "${workflow}" \ "${{ inputs.cypress_brb }}" \ "${{ inputs.cypress_default }}" \