From bf65881747e4c13e54c43c48caa1440ccbe3a9cc Mon Sep 17 00:00:00 2001 From: Przemyslaw Bak Date: Mon, 20 Nov 2023 16:19:23 +0100 Subject: [PATCH] ci: restore previous values for npm publish --- .github/workflows/publish-npm.yml | 7 ++++--- package.json | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 8a2d975..6e2b464 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -7,10 +7,11 @@ jobs: runs-on: ubuntu-latest environment: staging steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v2 + - name: Setup Node.js 18 + uses: actions/setup-node@v3 with: - node-version: '20.x' + node-version: 18 registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm ci diff --git a/package.json b/package.json index 5dcbeb4..4657311 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "author": "The Software House", "license": "ISC", "description": "TSH Frontend Components", - "private": false, + "private": true, "version": "1.0.0", "type": "module", "publishConfig": { "access": "public" },