From dfca636b9e23495750127f8d63996ab31ec31fd6 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 28 Mar 2024 13:04:31 -0400 Subject: [PATCH] Fix verify-staged-artifacts.yml for the proper path The Gradle command must be called in the `samples/time-spel-log` directory --- .github/workflows/verify-staged-artifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify-staged-artifacts.yml b/.github/workflows/verify-staged-artifacts.yml index 1839f0bb..cd49d77c 100644 --- a/.github/workflows/verify-staged-artifacts.yml +++ b/.github/workflows/verify-staged-artifacts.yml @@ -46,4 +46,4 @@ jobs: sed -i "1,/springFunctionsCatalogVersion.*/s/springFunctionsCatalogVersion.*/springFunctionsCatalogVersion='${{ inputs.releaseVersion }}'/" build.gradle - name: Verify time-spel-log sample against staged release - run: gradle check --init-script staging-repo-init.gradle + run: cd samples/time-spel-log && gradle check --init-script staging-repo-init.gradle