From dab820bb25e6e794a26dc38ba84c18c90cc47db7 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Wed, 22 Oct 2025 09:21:48 +0300 Subject: [PATCH] Update package version to 0.1.3 and modify GitHub Actions workflow to use 'npm run build' and correct package scope --- .github/workflows/publish-npm.yml | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 9e64f1c..0025649 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -24,7 +24,7 @@ jobs: run: npm install --frozen-lockfile - name: Build SDK - run: npm build + run: npm run build - name: Publish to npm run: npm publish --access public @@ -45,13 +45,13 @@ jobs: with: node-version: '18' registry-url: 'https://npm.pkg.github.com' - scope: '@network' + scope: 'network-ts-sdk' - name: Install dependencies run: npm install --frozen-lockfile - name: Build SDK - run: npm build + run: npm run build - name: Publish to GitHub Packages run: npm publish diff --git a/package.json b/package.json index dfd7a12..cb9d9bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "network-ts-sdk", - "version": "0.1.2", + "version": "0.1.3", "description": "TypeScript SDK for DeBros Network Gateway", "type": "module", "main": "./dist/index.js",