Skip to content

Commit

Permalink
fix(action): restore usage of realpath.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Apr 24, 2024
1 parent b8b2aa6 commit d87278a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,11 @@ runs:
- name: Set outputs
id: store-outputs # note: store outputs even if tests fail
working-directory: ${{ github.action_path }}
shell: bash
if: always()
run: |
echo "report=${{ github.action_path }}/report.xml" >> $GITHUB_OUTPUT
echo "report=$(realpath report.xml)" >> $GITHUB_OUTPUT
- name: Test Summary
if: always() # note: upload the report even if tests fail
Expand Down

0 comments on commit d87278a

Please sign in to comment.