@ludeo/cloud-common 1.1.98-test-2 → 1.1.98-test-3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,8 @@ jobs:
17
17
  build:
18
18
  if: github.ref != 'refs/heads/develop' # Skip build on develop branch
19
19
  runs-on: ubuntu-latest
20
+ env:
21
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_CI }}
20
22
 
21
23
  steps:
22
24
  - name: Checkout code
@@ -26,6 +28,7 @@ jobs:
26
28
  uses: actions/setup-node@v4
27
29
  with:
28
30
  node-version: "20"
31
+ registry-url: 'https://registry.npmjs.org/'
29
32
 
30
33
  - name: 🔐 Login to Ludeo NPM
31
34
  run: |
@@ -65,6 +68,8 @@ jobs:
65
68
  publish:
66
69
  if: github.ref == 'refs/heads/develop'
67
70
  runs-on: ubuntu-latest
71
+ env:
72
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_CI }}
68
73
 
69
74
  steps:
70
75
  - name: Checkout code
@@ -74,10 +79,7 @@ jobs:
74
79
  uses: actions/setup-node@v4
75
80
  with:
76
81
  node-version: "20"
77
-
78
- - name: 🔐 Login to Ludeo NPM
79
- run: |
80
- npm config set @ludeo:registry https://registry.npmjs.org/ && npm config set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN_CI }}
82
+ registry-url: 'https://registry.npmjs.org/'
81
83
 
82
84
  - name: 🏗️ Install dependencies
83
85
  run: npm install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.1.98-test-2",
3
+ "version": "1.1.98-test-3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",