Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Nov 15, 2024
1 parent 2ca5857 commit 44152a1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,16 @@ jobs:
timeout-minutes: 5

- name: Log files
run: find .
if: always()
run: |
echo "Listing files in the build folder:"
if [[ "$RUNNER_OS" == "Linux" || "$RUNNER_OS" == "macOS" ]]; then
# Unix-based (Linux/macOS)
find . -type f -exec echo {} \;
elif [[ "$RUNNER_OS" == "Windows" ]]; then
# Windows
dir /b .
fi
- name: Upload Failed test screenshots
uses: actions/[email protected]
Expand All @@ -72,5 +80,5 @@ jobs:
uses: actions/[email protected]
if: ${{ failure() }}
with:
name: Failed Reports
name: Failed Reports - ${{ runner.os }}
path: ./build/reports/tests/

0 comments on commit 44152a1

Please sign in to comment.