Skip to content

Commit

Permalink
BC-5468 udpate yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
UzaeirKhan committed Nov 13, 2023
1 parent af0d642 commit 85dc0f6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,13 @@ jobs:
file_paths+=("$file_path")
done
cat "${file_paths[@]}" > ${{ github.workspace }}/e2e-system-tests/env_variables/combined_credentials.env.json
all_entries=()
for path in "${file_paths[@]}"; do
all_entries+=("$(cat "$path")")
done
echo "[${all_entries[*]}]" > ${{ github.workspace }}/e2e-system-tests/env_variables/combined_credentials.env.json
cat ${{ github.workspace }}/e2e-system-tests/env_variables/combined_credentials.env.json
Expand Down

0 comments on commit 85dc0f6

Please sign in to comment.