From 4b81f0ecb790ab366025a85c4e4dfe46cde53c85 Mon Sep 17 00:00:00 2001 From: Drew Baugher <46505179+dbbaughe@users.noreply.github.com> Date: Fri, 13 Aug 2021 13:48:12 -0700 Subject: [PATCH] We still need non SNAPSHOT for other dependencies... Signed-off-by: Drew Baugher <46505179+dbbaughe@users.noreply.github.com> --- .github/workflows/test-and-build-workflow.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-build-workflow.yml b/.github/workflows/test-and-build-workflow.yml index 178910ea0..3237d86c6 100644 --- a/.github/workflows/test-and-build-workflow.yml +++ b/.github/workflows/test-and-build-workflow.yml @@ -31,7 +31,10 @@ jobs: - name: Build OpenSearch working-directory: ./OpenSearch # min artifact has SNAPSHOT published to maven which is needed for running tests - run: ./gradlew publishToMavenLocal -Dbuild.snapshot=true + # but we also still need non SNAPSHOT for the other dependencies that are building like common utils + run: | + ./gradlew publishToMavenLocal -Dbuild.snapshot=true + ./gradlew publishToMavenLocal -Dbuild.snapshot=false # dependencies: common-utils - name: Checkout common-utils uses: actions/checkout@v2