Skip to content

Commit

Permalink
Add package publish details
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan committed Dec 12, 2023
1 parent 1ff328c commit 29c845d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup Node.js environment with Yarn
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
# Install dependencies using Yarn
- run: yarn install --frozen-lockfile
# Publish the package to npm
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_REPO_ONLY_TOKEN }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "client-nodejs",
"name": "skytable",
"version": "1.0.0",
"main": "dist/index.js",
"description": "A NodeJS client driver for Skytable",
"description": "Offical NodeJS client driver for Skytable",
"repository": "https://github.com/skytable/client-nodejs.git",
"author": "Sayan Nandan <[email protected]>",
"license": "Apache-2.0",
Expand Down

0 comments on commit 29c845d

Please sign in to comment.