Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit 6478797

Browse files
authored
Merge pull request #6 from tensorlakeai/fix-build-workflow
Fix build step in workflow
2 parents 99657c0 + 731dc25 commit 6478797

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Publish TypeScript Client
2+
13
on:
24
workflow_dispatch:
35
inputs:
@@ -26,6 +28,8 @@ jobs:
2628
with:
2729
node-version: "20"
2830
- run: npm ci
31+
- name: Build
32+
run: cd packages/langchain && npm run build
2933
- uses: JS-DevTools/npm-publish@v3
3034
with:
3135
package: packages/langchain
@@ -42,8 +46,11 @@ jobs:
4246
with:
4347
node-version: "20"
4448
- run: npm ci
49+
- name: Build
50+
run: npm run build
4551
- uses: JS-DevTools/npm-publish@v3
4652
with:
53+
package: ./
4754
token: ${{ secrets.NPM_TOKEN }}
4855

4956
create-release:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "getindexify",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"description": "This is the TypeScript client for interacting with the Indexify service.",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

packages/langchain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@getindexify/langchain",
3-
"version": "0.0.13",
3+
"version": "0.0.15",
44
"description": "Langchain retriever for indexify client.",
55
"main": "index.ts",
66
"scripts": {

0 commit comments

Comments
 (0)