Skip to content

Commit 547267d

Browse files
committed
Configure artifact upload for workflows
1 parent 58c1677 commit 547267d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/fireperf-e2e.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,12 @@ jobs:
105105
assignees: ['jeremyjiang-dev', 'leotianlizhan', 'raymondlam', 'visumickey']
106106
});
107107
}
108+
- name: Upload test artifacts
109+
if: always()
110+
uses: actions/upload-artifact@v3
111+
with:
112+
name: fireperf-e2e-tests-artifacts
113+
path: |
114+
~/.m2/repository/com/google/firebase/perf-plugin
115+
**/build/reports
116+
**/build/test-results

.github/workflows/smoke-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,10 @@ jobs:
5757
BUILD_ID: ${{ github.run_id }}
5858
ARTIFACTS: ${{ runner.temp }}
5959
run: java -jar runner.jar smoke-tests/runner.config
60+
61+
- name: Upload test artifacts
62+
if: always()
63+
uses: actions/upload-artifact@v3
64+
with:
65+
name: smoke-tests-artifacts
66+
path: ${{ runner.temp }}

0 commit comments

Comments
 (0)