diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 5c6a9e504e..1d895e391f 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -116,12 +116,6 @@ jobs: json: "tests/e2e-tests/target/serenity-reports/cucumber_report.json" execution_tag: ${{ env.XRAY_EXECUTION_TAG_LOCALHOST }} - - name: Upload artifacts - uses: actions/upload-artifact@v2 - with: - name: e2e-tests-result - path: ${{ env.REPORTS_DIR }} - - name: Extract test results id: analyze_test_results if: github.ref_name == 'main' @@ -155,7 +149,6 @@ jobs: } >> "$GITHUB_OUTPUT" - name: Publish e2e test Results - if: github.ref_name == 'main' || steps.analyze_test_results.outputs.conclusion == 'failure' id: publish-unit-tests uses: EnricoMi/publish-unit-test-result-action@v2 with: @@ -163,6 +156,13 @@ jobs: comment_title: "E2E Test Results" check_name: "E2E Test Results" + - name: Upload artifacts + if: github.ref_name == 'main' || steps.analyze_test_results.outputs.conclusion == 'failure' + uses: actions/upload-artifact@v2 + with: + name: e2e-tests-result + path: ${{ env.REPORTS_DIR }} + - name: Slack Notification if: github.ref_name == 'main' && steps.analyze_test_results.outputs.conclusion == 'failure' uses: rtCamp/action-slack-notify@v2 diff --git a/tests/e2e-tests/src/main/kotlin/api_models/PresentationProof.kt b/tests/e2e-tests/src/main/kotlin/api_models/PresentationProof.kt index d1ef9f6716..52cc0d0e32 100644 --- a/tests/e2e-tests/src/main/kotlin/api_models/PresentationProof.kt +++ b/tests/e2e-tests/src/main/kotlin/api_models/PresentationProof.kt @@ -10,6 +10,7 @@ data class PresentationProof( var connectionId: String? = null, var proofs: List? = null, var data: List? = null, + var role: String? = null, ): JsonEncoded object PresentationProofStatus {