From caaad9205cbf5e7fcec8d703d6257c3e616133e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Wed, 6 Jul 2022 10:07:44 +0200 Subject: [PATCH] fix: publishing setup --- .github/workflows/publish.yml | 6 ++++-- packages/api-gateway/package.json | 1 + packages/auth/package.json | 1 + packages/files/package.json | 1 + packages/scheduler/package.json | 1 + packages/syncing-server/package.json | 1 + 6 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 50736fd27..7c380ec1b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,9 +28,11 @@ jobs: git_user_signingkey: true git_commit_gpgsign: true - - uses: actions/setup-node@v1 + - name: Set up Node + uses: actions/setup-node@v3 with: - node-version: '16.x' + registry-url: 'https://registry.npmjs.org' + node-version-file: '.nvmrc' - name: Install locally run: yarn install --immutable diff --git a/packages/api-gateway/package.json b/packages/api-gateway/package.json index d6827e340..62015d6cb 100644 --- a/packages/api-gateway/package.json +++ b/packages/api-gateway/package.json @@ -4,6 +4,7 @@ "engines": { "node": ">=16.0.0 <17.0.0" }, + "private": true, "description": "API Gateway For Standard Notes Services", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", diff --git a/packages/auth/package.json b/packages/auth/package.json index cf67f3d3a..8b575e5f0 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -4,6 +4,7 @@ "engines": { "node": ">=16.0.0 <17.0.0" }, + "private": true, "description": "Auth Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", diff --git a/packages/files/package.json b/packages/files/package.json index 3264fda4d..895868349 100644 --- a/packages/files/package.json +++ b/packages/files/package.json @@ -4,6 +4,7 @@ "engines": { "node": ">=16.0.0 <17.0.0" }, + "private": true, "description": "Standard Notes Files Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", diff --git a/packages/scheduler/package.json b/packages/scheduler/package.json index 64e9d48aa..2edbd842b 100644 --- a/packages/scheduler/package.json +++ b/packages/scheduler/package.json @@ -4,6 +4,7 @@ "engines": { "node": ">=16.0.0 <17.0.0" }, + "private": true, "description": "Scheduler Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", diff --git a/packages/syncing-server/package.json b/packages/syncing-server/package.json index a065f12c1..c0ca8de54 100644 --- a/packages/syncing-server/package.json +++ b/packages/syncing-server/package.json @@ -4,6 +4,7 @@ "engines": { "node": ">=16.0.0 <17.0.0" }, + "private": true, "description": "Syncing Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts",