Skip to content

Commit e00ea0d

Browse files
authored
Workflow fix (#8)
* feat: Added support for reset * fix: Improved delete Collection test case. * feat: Cohere support Refs: #1 * feat: Added integration tests in a separate workflow - Release workflow now is only triggered upon new release and it bumps version to tag name * fix: Added reset after each test to ensure test are not failing due to what previous tests have done. * feat: List collections - Improvements of how Collections are handled Refs: #3 * feat: Full feature parity with the Python API (except for raw SQL execution) Refs: #2, #3, #4 * fix: Fixing release workflow * chore: Testing release * fix: OSSRH creds missing * chore: Update POM to comply with OSSRH requirements. * chore: Finalizing release workflow.
1 parent b9aa4d5 commit e00ea0d

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
server-id: ossrh
2020
server-username: MAVEN_USERNAME
2121
server-password: MAVEN_PASSWORD
22+
2223
- id: install-secret-key
2324
name: Install gpg secret key
2425
run: |
@@ -37,11 +38,6 @@ jobs:
3738
-DskipTests \
3839
versions:set \
3940
-DnewVersion=${{ github.ref_name }}
40-
git config --local user.email "action@github.com"
41-
git config --local user.name "GitHub Action"
42-
git add pom.xml
43-
git commit -m "Increment version to ${{ github.ref_name }}" -a
44-
git push
4541
- name: Publish package
4642
run: |
4743
mvn \

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
6+
<name>Chroma Vector DB Java Client Library</name>
77
<groupId>io.github.amikos-tech</groupId>
88
<artifactId>chromadb-java-client</artifactId>
99
<version>0.1.1-SNAPSHOT</version>
@@ -24,6 +24,18 @@
2424
<url>https://amikos.tech</url>
2525
</organization>
2626

27+
<scm>
28+
<connection>scm:git:git://github.com/amikos-tech/chromadb-java-client.git</connection>
29+
<developerConnection>scm:git:ssh://git@github.com:amikos-tech/chromadb-java-client.git</developerConnection>
30+
<url>https://github.com/amikos-tech/chromadb-java-client/tree/master</url>
31+
</scm><licenses>
32+
<license>
33+
<name>MIT</name>
34+
<url>https://opensource.org/licenses/MIT</url>
35+
</license>
36+
</licenses>
37+
38+
2739
<!-- <distributionManagement>-->
2840
<!-- <repository>-->
2941
<!-- <id>github</id>-->

0 commit comments

Comments
 (0)