Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
eoctet committed Feb 16, 2024
1 parent ae7aae5 commit d9918db
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/maven_build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ jobs:
Copy-Item -Path llamajava/* -Destination llama.cpp/llamajava -Force
Copy-Item -Path llamajava/win/* -Destination llama.cpp/llamajava -Force
cd llama.cpp
$LATEST_TAG=(git.exe describe --tags)
$TAG_ID=(git.exe rev-list --tags --max-count=1)
$LATEST_TAG=(git.exe describe --tags $TAG_ID)
echo "=> Llama.cpp latest tag: $LATEST_TAG"
git.exe checkout $LATEST_TAG
Add-Content CMakeLists.txt "add_subdirectory(llamajava)"
Expand Down
2 changes: 1 addition & 1 deletion llama-java-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>chat.octet</groupId>
<artifactId>octet-chat</artifactId>
<version>1.3.8-SNAPSHOT</version>
<version>1.3.8</version>
</parent>

<artifactId>llama-java-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion octet-chat-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>chat.octet</groupId>
<artifactId>octet-chat</artifactId>
<version>1.3.8-SNAPSHOT</version>
<version>1.3.8</version>
</parent>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>chat.octet</groupId>
<artifactId>octet-chat</artifactId>
<packaging>pom</packaging>
<version>1.3.8-SNAPSHOT</version>
<version>1.3.8</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand All @@ -19,7 +19,7 @@
<lombok.version>1.18.26</lombok.version>
<guava.version>32.1.2-jre</guava.version>
<spring-boot.version>2.7.16</spring-boot.version>
<llama.java.version>1.3.8-SNAPSHOT</llama.java.version>
<llama.java.version>1.3.8</llama.java.version>
</properties>

<name>octet-chat</name>
Expand Down

0 comments on commit d9918db

Please sign in to comment.