diff --git a/.github/workflows/npm_publish.yml b/.github/workflows/npm_publish.yml index 6e42b6219..beef0f241 100644 --- a/.github/workflows/npm_publish.yml +++ b/.github/workflows/npm_publish.yml @@ -21,16 +21,14 @@ jobs: node-version: "20" - run: npm ci - uses: JS-DevTools/npm-publish@v3 - id: publish with: token: ${{ secrets.NPM_TOKEN }} package: bindings - - if: ${{ steps.publish.outputs.type }} - run: echo "Published to NPM registry '${{ steps.publish.outputs.name }}' version '${{ steps.publish.outputs.version }}'" # Publish the Tari Wallet Daemon client to the NPM registry publish-wallet-daemon-client: runs-on: ubuntu-latest + needs: publish-typescript-bindings defaults: run: working-directory: clients/javascript/wallet_daemon_client @@ -41,10 +39,7 @@ jobs: node-version: "20" - run: npm ci - uses: JS-DevTools/npm-publish@v3 - id: publish with: token: ${{ secrets.NPM_TOKEN }} package: clients/javascript/wallet_daemon_client - - if: ${{ steps.publish.outputs.type }} - run: echo "Published to NPM registry '${{ steps.publish.outputs.name }}' version '${{ steps.publish.outputs.version }}'" diff --git a/bindings/package.json b/bindings/package.json index 5586f71e8..6bb0e2732 100644 --- a/bindings/package.json +++ b/bindings/package.json @@ -1,6 +1,6 @@ { "name": "@tariproject/typescript-bindings", - "version": "1.0.1", + "version": "1.0.2", "description": "", "main": "index.ts", "scripts": { diff --git a/clients/javascript/wallet_daemon_client/package.json b/clients/javascript/wallet_daemon_client/package.json index da27d2eb1..b6e6e6a01 100644 --- a/clients/javascript/wallet_daemon_client/package.json +++ b/clients/javascript/wallet_daemon_client/package.json @@ -1,6 +1,6 @@ { "name": "@tariproject/wallet_jrpc_client", - "version": "1.0.5", + "version": "1.0.6", "description": "Tari wallet JSON-RPC client library", "scripts": { "build": "tsc", @@ -14,7 +14,7 @@ "author": "", "license": "ISC", "dependencies": { - "@tariproject/typescript-bindings": "1.0.1" + "@tariproject/typescript-bindings": "1.0.2" }, "devDependencies": { "typescript": "^5.3.3"