Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed May 13, 2024
1 parent 6cab03c commit 05f4926
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ runs:
if: always()
run: |
echo "report=$(realpath report.xml)" >> $GITHUB_OUTPUT
echo "report_txt=$(realpath report.txt)" >> $GITHUB_OUTPUT
- name: Test Summary
if: always() # note: upload the report even if tests fail
Expand All @@ -116,4 +117,6 @@ runs:
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: falcosecurity-testing-report-${{ runner.arch }}
path: ${{ steps.store-outputs.outputs.report }}
path: |
${{ steps.store-outputs.outputs.report }}
${{ steps.store-outputs.outputs.report_txt }}

0 comments on commit 05f4926

Please sign in to comment.