From d8591c65f0ab3db715616dae5a940b66e40b87c5 Mon Sep 17 00:00:00 2001 From: Owais Kazi Date: Thu, 2 Nov 2023 13:57:14 -0700 Subject: [PATCH] Corrected branch name Signed-off-by: Owais Kazi --- .github/workflows/CI.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7c53ab6be..0d221a352 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -36,19 +36,19 @@ jobs: name: Test JDK${{ matrix.java }}, ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 - with: - repository: opensearch-project/ml-commons - ref: agent_framework_dev - - name: Publish to Maven Local - run: | - ./gradlew publishToMavenLocal - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v3 with: java-version: ${{ matrix.java }} distribution: temurin + - uses: actions/checkout@v4 + with: + repository: opensearch-project/ml-commons + ref: feature/agent_framework + - name: Publish to Maven Local + run: | + ./gradlew publishToMavenLocal - name: Build and Run Tests run: | ./gradlew check -x integTest -x yamlRestTest