Skip to content

Commit 2a4d07b

Browse files
authored
Merge pull request #704 from SimonMarquis/fix/reports-archive
Fix incomplete build reports
2 parents d905701 + 1269b29 commit 2a4d07b

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/Build.yaml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,22 @@ jobs:
4848
- name: Upload build outputs (APKs)
4949
uses: actions/upload-artifact@v3
5050
with:
51-
name: build-outputs
52-
path: app/build/outputs
51+
name: APKs
52+
path: '**/build/outputs/apk/**/*.apk'
5353

54-
- name: Upload build reports
54+
- name: Upload lint reports (HTML)
5555
if: always()
5656
uses: actions/upload-artifact@v3
5757
with:
58-
name: build-reports
59-
path: app/build/reports
58+
name: lint-reports
59+
path: '**/build/reports/lint-results-*.html'
60+
61+
- name: Upload test results (XML)
62+
if: always()
63+
uses: actions/upload-artifact@v3
64+
with:
65+
name: test-results
66+
path: '**/build/test-results/test*UnitTest/**.xml'
6067

6168
androidTest:
6269
needs: build

0 commit comments

Comments
 (0)