File tree Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 10
10
11
11
- uses : actions/setup-node@v4
12
12
with :
13
- node-version : ' 18 .x'
13
+ node-version : ' 22 .x'
14
14
registry-url : ' https://registry.npmjs.org'
15
15
16
16
- name : Install dependencies
@@ -19,12 +19,18 @@ jobs:
19
19
- name : Set version from tag in infra
20
20
run : |
21
21
cd packages/infra
22
- npm version patch
22
+ VERSION="${GITHUB_REF_NAME#v}"
23
+ npm version "$VERSION"
24
+ env :
25
+ GITHUB_REF_NAME : ${{ github.ref_name }}
23
26
24
27
- name : Set version from tag in management
25
28
run : |
26
29
cd packages/management
27
- npm version patch
30
+ VERSION="${GITHUB_REF_NAME#v}"
31
+ npm version "$VERSION"
32
+ env :
33
+ GITHUB_REF_NAME : ${{ github.ref_name }}
28
34
29
35
- name : Build packages
30
36
run : npm run build
Original file line number Diff line number Diff line change 1
1
ARG FROM_BRANCH=latest
2
- FROM node:18
2
+ FROM node:22
3
3
4
4
WORKDIR /home/jenkins/app
5
5
Original file line number Diff line number Diff line change 1
1
# build it with command
2
2
# docker build -f ./Dockerfile_base -t gitlab.locsec.net:4567/mtp-dev/console-one-frontend/base:master -t gitlab.locsec.net:4567/mtp-dev/console-one-frontend/base:latest --platform linux/amd64 .
3
3
#
4
- FROM node:18
4
+ FROM node:22
5
5
6
6
WORKDIR /home/jenkins/app
7
7
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ Add the server configuration:
156
156
157
157
### Prerequisites
158
158
159
- - Node.js 18 +
159
+ - Node.js 22 +
160
160
- npm 8+
161
161
162
162
### Setup
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @chkp/quantum-management-mcp" ,
3
3
"version" : " 1.0.16" ,
4
- "publishConfig" : {
5
- "registry" : " https://artifactory-npm/artifactory/api/npm/npm/"
6
- },
7
4
"bin" : {
8
5
"genai-mcp-server-management" : " dist/index.js"
9
6
},
You can’t perform that action at this time.
0 commit comments