From 5648c3e23cdaa9c438e66d0b245bff88e830781f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Tue, 20 Apr 2021 23:51:25 +0200 Subject: [PATCH] publish CURRENT benchmark results --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89ad10e7..7fb9b826 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -193,10 +193,18 @@ jobs: name: Copy Codegen Results run: cp ./benchmark-codegen/yosql-benchmarks-codegen.json ./yosql-website/content/benchmarks/releases/yosql-benchmarks-codegen-${{ needs.prepare.outputs.release_version }}.json if: needs.prepare.outputs.commit_count > 0 + - id: replace-codegen-results + name: Replace CURRENT Codegen Results + run: cp ./benchmark-codegen/yosql-benchmarks-codegen.json ./yosql-website/content/benchmarks/releases/yosql-benchmarks-codegen-CURRENT.json + if: needs.prepare.outputs.commit_count > 0 - id: copy-jdbc-results name: Copy JDBC Results run: cp ./benchmark-jdbc/yosql-benchmarks-jdbc.json ./yosql-website/content/benchmarks/releases/yosql-benchmarks-jdbc-${{ needs.prepare.outputs.release_version }}.json if: needs.prepare.outputs.commit_count > 0 + - id: replace-jdbc-results + name: Replace CURRENT JDBC Results + run: cp ./benchmark-jdbc/yosql-benchmarks-jdbc.json ./yosql-website/content/benchmarks/releases/yosql-benchmarks-jdbc-CURRENT.json + if: needs.prepare.outputs.commit_count > 0 - id: push name: Push Benchmarks uses: stefanzweifel/git-auto-commit-action@v4 -- 2.11.4.GIT