Skip to content

Commit

Permalink
Merge pull request #703 from jmartisk/fix-nightly-job
Browse files Browse the repository at this point in the history
Fix the nightly job
  • Loading branch information
jmartisk authored Jun 25, 2024
2 parents 11b1c91 + 42c8c15 commit de7c673
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-against-langchain4j.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,15 @@ jobs:

- name: Build langchain4j
run: |
mkdir langchain4j
cd langchain4j
git clone https://github.com/langchain4j/langchain4j.git
cd langchain4j
./mvnw -B clean install -DskipTests -DskipITs
- name: Build with Maven
run: ./mvnw -B clean install -Dno-format
run: |
LANGCHAIN4J_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout -f langchain4j/pom.xml)
echo "LANGCHAIN4J_VERSION=$LANGCHAIN4J_VERSION"
./mvnw -B clean install -Dno-format -Dlangchain4j.version=$LANGCHAIN4J_VERSION
env:
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }}
Expand Down

0 comments on commit de7c673

Please sign in to comment.