@ludeo/cloud-common 1.2.192-beta-yahil-8 → 1.2.193
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.
- package/.github/workflows/main.yaml +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/v4/events/ludeocast-agent/resource-update.d.ts +1 -1
- package/dist/v4/events/ludeocast-agent/resource-update.js +1 -0
- package/dist/v4/events/ludeocast-agent/resource-update.js.map +1 -1
- package/dist/v4/events/site-controller/resource-status-update.d.ts +6 -2
- package/dist/v4/events/site-controller/resource-status-update.js +19 -2
- package/dist/v4/events/site-controller/resource-status-update.js.map +1 -1
- package/package.json +1 -1
- package/src/v4/events/ludeocast-agent/resource-update.ts +2 -1
- package/src/v4/events/site-controller/resource-status-update.ts +16 -2
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
if: github.ref != 'refs/heads/develop' # Skip build on develop branch
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
env:
|
|
21
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
21
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
22
22
|
|
|
23
23
|
steps:
|
|
24
24
|
- name: Checkout code
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
|
|
33
33
|
- name: 🔐 Login to Ludeo NPM
|
|
34
34
|
run: |
|
|
35
|
-
npm config set @ludeo:registry https://registry.npmjs.org/ && npm config set '//registry.npmjs.org/:_authToken' ${{ secrets.
|
|
35
|
+
npm config set @ludeo:registry https://registry.npmjs.org/ && npm config set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }}
|
|
36
36
|
|
|
37
37
|
- name: 🏗️ Install dependencies
|
|
38
38
|
run: npm install
|
|
@@ -69,7 +69,7 @@ jobs:
|
|
|
69
69
|
if: github.ref == 'refs/heads/develop'
|
|
70
70
|
runs-on: ubuntu-latest
|
|
71
71
|
env:
|
|
72
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
72
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
73
73
|
|
|
74
74
|
steps:
|
|
75
75
|
- name: Checkout code
|