diff --git a/.github/workflows/automated-release.yml b/.github/workflows/automated-release.yml index 3886a931e3..0810613cc8 100644 --- a/.github/workflows/automated-release.yml +++ b/.github/workflows/automated-release.yml @@ -70,4 +70,17 @@ jobs: BUILD_NUMBER: ${{ github.run_number }} BRANCH_NAME: ${{ github.ref_name }} + - name: Store test results + uses: actions/upload-artifact@v4 + if: failure() + with: + name: ReleaseAutomated-${{ github.run_number }} + path: | + results/** + gateway-service/build/reports/** + discovery-service/build/reports/** + caching-service/build/reports/** + api-catalog-services/build/reports/** + zaas-service/build/reports/** + - uses: ./.github/actions/teardown diff --git a/.github/workflows/binary-snapshot-release.yml b/.github/workflows/binary-snapshot-release.yml index ae8626c5c7..c6e1e180df 100644 --- a/.github/workflows/binary-snapshot-release.yml +++ b/.github/workflows/binary-snapshot-release.yml @@ -26,4 +26,16 @@ jobs: BUILD_NUMBER: ${{ github.run_number }} BRANCH_NAME: ${{ github.ref_name }} + - name: Store test results + uses: actions/upload-artifact@v4 + if: failure() + with: + name: ReleaseSnapshotAuto-${{ github.run_number }} + path: | + gateway-service/build/reports/** + discovery-service/build/reports/** + caching-service/build/reports/** + api-catalog-services/build/reports/** + zaas-service/build/reports/** + - uses: ./.github/actions/teardown diff --git a/.github/workflows/binary-specific-release.yml b/.github/workflows/binary-specific-release.yml index 8c7612da97..a69af23030 100644 --- a/.github/workflows/binary-specific-release.yml +++ b/.github/workflows/binary-specific-release.yml @@ -65,4 +65,16 @@ jobs: BUILD_NUMBER: ${{ github.run_number }} BRANCH_NAME: ${{ github.ref_name }} + - name: Store test results + uses: actions/upload-artifact@v4 + if: failure() + with: + name: BinarySpecificRelease-${{ github.run_number }} + path: | + gateway-service/build/reports/** + discovery-service/build/reports/** + caching-service/build/reports/** + api-catalog-services/build/reports/** + zaas-service/build/reports/** + - uses: ./.github/actions/teardown diff --git a/.github/workflows/branch-snapshot-release.yml b/.github/workflows/branch-snapshot-release.yml index b189fd6bab..94b16c9420 100644 --- a/.github/workflows/branch-snapshot-release.yml +++ b/.github/workflows/branch-snapshot-release.yml @@ -36,5 +36,17 @@ jobs: BRANCH_NAME: ${{ github.ref_name }} BUILD_NUMBER: ${{ github.run_number }} + - name: Store test results + uses: actions/upload-artifact@v4 + if: failure() + with: + name: BranchSnapshotRelease-${{ github.run_number }} + path: | + gateway-service/build/reports/** + discovery-service/build/reports/** + caching-service/build/reports/** + api-catalog-services/build/reports/** + zaas-service/build/reports/** + - uses: ./.github/actions/teardown