From b3c882032f8aa4a21f4c3e330b14a65306ab1698 Mon Sep 17 00:00:00 2001 From: Panagiotis Date: Wed, 6 Nov 2024 15:19:42 +0200 Subject: [PATCH] fix: bench.yaml syntax --- .github/workflows/bench.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 87b0295..4d1ef60 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -109,15 +109,15 @@ jobs: run: | P95=$(grep "95%" ${{ github.workspace }}/output.log | awk '{print $4, $5}') echo "p95=${P95}" | tee -a "$GITHUB_OUTPUT" - - uses: cloudposse/github-action-matrix-outputs-write@v1 - id: out - with: - matrix-step-name: ${{ github.job }} - matrix-key: ${{ matrix.response }}_${{ matrix.service }} - outputs: |- - has_error: ${{ steps.extract_has_error.error }} - rps: ${{ steps.extract_rps.error }} - p95: ${{ steps.extract_p95.error }} + - uses: cloudposse/github-action-matrix-outputs-write@v1 + id: out + with: + matrix-step-name: ${{ github.job }} + matrix-key: ${{ matrix.response }}_${{ matrix.service }} + outputs: |- + has_error: ${{ steps.extract_has_error.error }} + rps: ${{ steps.extract_rps.error }} + p95: ${{ steps.extract_p95.error }} read: runs-on: ubuntu-latest needs: [benchmark]