We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479a713 commit 1791dffCopy full SHA for 1791dff
.github/workflows/build-common.yml
@@ -216,3 +216,14 @@ jobs:
216
217
- name: Test
218
run: ./gradlew ${{ matrix.module }}:smokeTest
219
+
220
+ - name: Create unique artifact name
221
+ run: |
222
+ echo "UPLOAD_ARTIFACT_NAME=smoke-test-reports-${{ matrix.module }}" | sed 's/:/-/g' >> $GITHUB_ENV
223
224
+ - name: Upload smoke test reports
225
+ uses: actions/upload-artifact@v4
226
+ if: failure()
227
+ with:
228
+ name: ${{ env.UPLOAD_ARTIFACT_NAME }}
229
+ path: '**/build/reports/tests/smokeTest/**/*'
0 commit comments