Replace pnpm with npm in GitHub Actions workflow for dependency installation, building, and publishing steps

This commit is contained in:
anonpenguin23 2025-10-22 09:19:49 +03:00
parent f4e76d2876
commit 4459fc6c49
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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",