From 7b19d9cc370fbc32212474336d044e9cbfd114de Mon Sep 17 00:00:00 2001 From: Grant Zukel Date: Mon, 10 Jun 2024 18:44:36 -0600 Subject: [PATCH] adding change log --- .../workflows/ci-nightly-performance-testing.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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