From 9c9f86bd4218f1effb20cd9db5f44fca70277466 Mon Sep 17 00:00:00 2001 From: johnjcasey Date: Thu, 31 Aug 2023 14:14:16 -0400 Subject: [PATCH] fix call to gradle --- .../beam_PostCommit_Java_IO_GCS_Performance_Tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/beam_PostCommit_Java_IO_GCS_Performance_Tests.yml b/.github/workflows/beam_PostCommit_Java_IO_GCS_Performance_Tests.yml index c94e884effa2f..3a0800b4bcd36 100644 --- a/.github/workflows/beam_PostCommit_Java_IO_GCS_Performance_Tests.yml +++ b/.github/workflows/beam_PostCommit_Java_IO_GCS_Performance_Tests.yml @@ -104,14 +104,17 @@ jobs: gcloud auth configure-docker us.gcr.io - name: run scheduled javaPostcommitIOGCSPerformanceTests script if: github.event_name == 'schedule' #This ensures only scheduled runs publish metrics publicly + uses: ./.github/actions/gradle-command-self-hosted-action with: + gradle-command: :it:google-cloud-platform:GCSPerformanceTest exportDataset: performance_tests exportTable: io_performance_metrics - run: ./gradlew :it:google-cloud-platform:GCSPerformanceTest env: USER: github-actions - name: run triggered javaPostcommitIOGCSPerformanceTests script if: github.event_name != 'schedule' - run: ./gradlew :it:google-cloud-platform:GCSPerformanceTest + uses: ./.github/actions/gradle-command-self-hosted-action + with: + gradle-command: :it:google-cloud-platform:GCSPerformanceTest env: USER: github-actions