diff --git a/.github/workflows/ci-nightly-performance-testing.yaml b/.github/workflows/ci-nightly-performance-testing.yaml index 01eef19cf1..30116f743f 100644 --- a/.github/workflows/ci-nightly-performance-testing.yaml +++ b/.github/workflows/ci-nightly-performance-testing.yaml @@ -19,4 +19,16 @@ jobs: - name: "EXECUTE:LOADTESTS" uses: artilleryio/action-cli@v1 with: - command: run .github/actions/performance-tests/art.yaml --record --key ${{ secrets.ARTILLERY_KEY }} \ No newline at end of file + command: run .github/actions/performance-tests/art.yaml --record --key ${{ secrets.ARTILLERY_KEY }} --output ./report.json + + - name: "GENERATE:REPORT" + uses: artilleryio/action-cli@v1 + with: + command: report report.json --output artillery_report.html + + - name: "UPLOAD:REPORT" + uses: actions/upload-artifact@v3 + if: success() + with: + name: artillery-report + path: ./artillery_report.html \ No newline at end of file