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 bd68b98Copy full SHA for bd68b98
.github/workflows/build-common.yml
@@ -216,3 +216,15 @@ jobs:
216
217
- name: Test
218
run: ./gradlew ${{ matrix.module }}:smokeTest
219
+
220
+ - name: Create unique artifact name
221
+ if: failure()
222
+ run: |
223
+ echo "UPLOAD_ARTIFACT_NAME=smoke-test-reports-${{ matrix.module }}" | sed 's/:/-/g' >> $GITHUB_ENV
224
225
+ - name: Upload smoke test reports
226
+ uses: actions/upload-artifact@v4
227
228
+ with:
229
+ name: ${{ env.UPLOAD_ARTIFACT_NAME }}
230
+ path: '**/build/reports/tests/smokeTest/**/*'
0 commit comments