Skip to content

Commit b2dfa38

Browse files
committed
bump to 1.6.5
1 parent 1cf9599 commit b2dfa38

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

.github/workflows/publish-npm.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Publish Package to npmjs
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
id-token: write
11+
packages: write
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '20.x'
17+
registry-url: 'https://npm.pkg.github.com'
18+
- run: yarn
19+
env:
20+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
- run: yarn run build
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: '20.x'
25+
registry-url: 'https://registry.npmjs.org'
26+
- run: npm publish --scope=@internxt --access public
27+
env:
28+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@internxt/sdk",
33
"author": "Internxt <hello@internxt.com>",
4-
"version": "1.6.4",
4+
"version": "1.6.5",
55
"description": "An sdk for interacting with Internxt's services",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)