Skip to content

Commit

Permalink
fix ARTIFACT_PATHS
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Sep 9, 2024
1 parent c51c5b5 commit 3909b4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-e2e-tests-reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ jobs:
# Convert array to newline-separated string for output
printf -v PATHS_STR '%s\n' "${DEFAULT_PATHS[@]}"
echo "Test artifact paths: $PATHS_STR" # Echoing the PATHS_STR to the logs
echo "paths=$PATHS_STR" >> $GITHUB_OUTPUT
echo "ARTIFACT_PATHS=$PATHS_STR" >> $GITHUB_ENV # Store the multiline paths in an environment variable
- name: Run tests
id: run_tests
Expand Down Expand Up @@ -581,7 +581,7 @@ jobs:
default_e2e_test_chainlink_upgrade_image: ${{ matrix.tests.test_env_vars.E2E_TEST_CHAINLINK_UPGRADE_IMAGE }}
aws_registries: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}
artifacts_name: ${{ matrix.tests.id_sanitized }}-test-logs
artifacts_location: ${{ steps.get_artifact_paths.outputs.paths }}
artifacts_location: ${{ env.ARTIFACT_PATHS }}
publish_check_name: ${{ matrix.tests.id_sanitized }}
token: ${{ secrets.GH_TOKEN }}
cache_key_id: e2e-tests
Expand Down

0 comments on commit 3909b4a

Please sign in to comment.