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

Commit ba9ee03

Browse files
authored
Merge pull request #4 from tensorlakeai/publish-workflow
Publish workflow
2 parents e5c3332 + 41330e7 commit ba9ee03

File tree

3 files changed

+77
-2
lines changed

3 files changed

+77
-2
lines changed

.github/workflows/publish.yaml

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
on:
2+
workflow_dispatch:
3+
inputs:
4+
release_message:
5+
type: string
6+
description: Release message
7+
required: true
8+
prerelease:
9+
type: boolean
10+
description: Is this a pre-release version?
11+
required: false
12+
default: false
13+
14+
permissions:
15+
contents: write
16+
17+
jobs:
18+
publish:
19+
name: Publish Langchain Retriever to npm
20+
runs-on: ubuntu-latest
21+
needs:
22+
- create-release
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-node@v3
26+
with:
27+
node-version: "20"
28+
- run: npm ci
29+
- uses: JS-DevTools/npm-publish@v3
30+
with:
31+
package: packages/langchain
32+
token: ${{ secrets.NPM_TOKEN }}
33+
34+
publish:
35+
name: Publish TypeScript Client to npm
36+
runs-on: ubuntu-latest
37+
needs:
38+
- create-release
39+
steps:
40+
- uses: actions/checkout@v4
41+
- uses: actions/setup-node@v3
42+
with:
43+
node-version: "20"
44+
- run: npm ci
45+
- uses: JS-DevTools/npm-publish@v3
46+
with:
47+
token: ${{ secrets.NPM_TOKEN }}
48+
49+
create-release:
50+
name: Create GitHub Release
51+
runs-on: ubuntu-latest
52+
needs:
53+
- extract-version
54+
steps:
55+
- name: Create GitHub Release
56+
id: create_release
57+
uses: actions/create-release@v1
58+
with:
59+
tag_name: "v${{ needs.extract-version.outputs.version }}"
60+
prerelease: ${{ github.event.inputs.prerelease }}
61+
body: ${{ github.event.inputs.release_message }}
62+
env:
63+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64+
65+
extract-version:
66+
name: Extract Version Number
67+
runs-on: ubuntu-latest
68+
outputs:
69+
version: ${{ steps.version_extraction.outputs.version }}
70+
steps:
71+
- uses: actions/checkout@v4
72+
- id: version_extraction
73+
run: echo "version=$(cat package.json | jq .version' | xargs)" >> "$GITHUB_OUTPUT"
74+
75+

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "getindexify",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
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

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

0 commit comments

Comments
 (0)