Skip to content

Commit

Permalink
fix xcresult find
Browse files Browse the repository at this point in the history
  • Loading branch information
netbe authored Oct 3, 2024
1 parent 374d684 commit 8597c93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_reusable_run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
if: always()
run: |
# Find all .xcresult files under the artifacts directory
find artifacts/ -type f -name "*.xcresult" | while read result; do
find artifacts/ -type d -name "*.xcresult" | while read result; do
echo "Analyzing $result"
# Run the analysis action for each .xcresult file
gh action run [email protected] \
Expand Down Expand Up @@ -178,4 +178,4 @@ jobs:
DD_ENV: ci
DATADOG_SITE: datadoghq.eu
run: |
find . -name "*.junit" -type f | tr '\n' ' ' | xargs -L 1 datadog-ci junit upload --service wire-ios-mono .
find . -name "*.junit" -type f | tr '\n' ' ' | xargs -L 1 datadog-ci junit upload --service wire-ios-mono .

0 comments on commit 8597c93

Please sign in to comment.