Skip to content

Commit

Permalink
fixing path
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtallcampbell committed Jun 20, 2024
1 parent 3deac20 commit 5d3f498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-core-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
echo "Killing the integration test host..."
kill -9 $host_pid
if [[ ! -f "/workspaces/${{ inputs.app_name }}/.git/test-results.xml" ]]; then
if [[ ! -f "${PWD}/.git/test-results.xml" ]]; then
echo "Test results file not found."
tree /var/spacedev
exit 1
Expand All @@ -156,7 +156,7 @@ jobs:
shell: bash
if: always()
run: |
cat /workspaces/${{ inputs.app_name }}/.git/test-results.xml
cat ${PWD}/.git/test-results.xml
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/linux@v2
Expand Down

0 comments on commit 5d3f498

Please sign in to comment.