From 4459fc6c49d5bf08cb2223fac15ac74f9092341c Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Wed, 22 Oct 2025 09:19:49 +0300 Subject: [PATCH] Replace pnpm with npm in GitHub Actions workflow for dependency installation, building, and publishing steps --- .github/workflows/publish-npm.yml | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 57f49fd..9e64f1c 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -21,10 +21,10 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Install dependencies - run: pnpm install --frozen-lockfile + run: npm install --frozen-lockfile - name: Build SDK - run: pnpm build + run: npm build - name: Publish to npm run: npm publish --access public @@ -48,10 +48,10 @@ jobs: scope: '@network' - name: Install dependencies - run: pnpm install --frozen-lockfile + run: npm install --frozen-lockfile - name: Build SDK - run: pnpm build + run: npm build - name: Publish to GitHub Packages run: npm publish diff --git a/package.json b/package.json index c50efb6..dfd7a12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "network-ts-sdk", - "version": "0.1.1", + "version": "0.1.2", "description": "TypeScript SDK for DeBros Network Gateway", "type": "module", "main": "./dist/index.js",