Skip to content

Commit 41e5b5f

Browse files
committed
release: 2.2.8
1 parent c49869c commit 41e5b5f

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

.github/workflows/push_master.workflow.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@ jobs:
7171
runs-on: ubuntu-22.04
7272
needs: [functional-tests]
7373
steps:
74-
- name: Install SSH key
75-
uses: shimataro/ssh-key-action@v2
76-
with:
77-
key: ${{ secrets.SSH_KEY }}
78-
name: id_rsa
79-
known_hosts: unnecessary
8074
- uses: actions/checkout@v2
8175
- name: Cache node modules
8276
uses: actions/cache@v2
@@ -92,15 +86,17 @@ jobs:
9286
${{ runner.os }}-build-${{ env.cache-name }}-
9387
${{ runner.os }}-build-
9488
${{ runner.os }}-
95-
- uses: actions/setup-node@v1
89+
- uses: actions/setup-node@v3
9690
with:
97-
node-version: "14.x"
91+
node-version: 16
9892
registry-url: "https://registry.npmjs.org"
99-
# Deploy plugin
100-
- run: npm install && npm run build && npm publish
93+
- name: Install dependencies
94+
run: npm ci
95+
- name: Publish package
96+
run: npm publish
10197
env:
10298
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
103-
# Deploy types
104-
- run: cd types/ && npm run build && npm publish
99+
- name: Publish types package
100+
run: cd types/ && npm publish
105101
env:
106-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
102+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuzzle-device-manager",
3-
"version": "2.2.7",
3+
"version": "2.2.8",
44
"description": "Manage your IoT devices and assets. Choose a provisioning strategy, receive and decode payload, handle your IoT business logic.",
55
"author": "The Kuzzle Team (support@kuzzle.io)",
66
"repository": {

0 commit comments

Comments
 (0)