diff --git a/npm/cloudbuild.yaml b/npm/cloudbuild.yaml index 618c39ff..b34bf07e 100644 --- a/npm/cloudbuild.yaml +++ b/npm/cloudbuild.yaml @@ -55,8 +55,6 @@ steps: args: - 'build' - '--build-arg=NODE_VERSION=18.12.0' - - '--tag=gcr.io/$PROJECT_ID/npm:lts' - - '--tag=gcr.io/$PROJECT_ID/nodejs/npm' - '--tag=gcr.io/$PROJECT_ID/npm:node-18.12.0' - '.' - name: 'gcr.io/cloud-builders/docker' @@ -64,6 +62,26 @@ steps: - 'build' - '--build-arg=NODE_VERSION=19.0.0' - '--tag=gcr.io/$PROJECT_ID/npm:node-19.0.0' + - '.' +- name: 'gcr.io/cloud-builders/docker' + args: + - 'build' + - '--build-arg=NODE_VERSION=20.18.1' + - '--tag=gcr.io/$PROJECT_ID/npm:node-20.18.1' + - '.' +- name: 'gcr.io/cloud-builders/docker' + args: + - 'build' + - '--build-arg=NODE_VERSION=22.12.0' + - '--tag=gcr.io/$PROJECT_ID/npm:lts' + - '--tag=gcr.io/$PROJECT_ID/nodejs/npm' + - '--tag=gcr.io/$PROJECT_ID/npm:node-22.12.0' + - '.' +- name: 'gcr.io/cloud-builders/docker' + args: + - 'build' + - '--build-arg=NODE_VERSION=23.4.0' + - '--tag=gcr.io/$PROJECT_ID/npm:node-23.4.0' - '--tag=gcr.io/$PROJECT_ID/npm:latest' - '--tag=gcr.io/$PROJECT_ID/npm:current' - '.' @@ -89,6 +107,12 @@ steps: args: ['--version'] - name: 'gcr.io/$PROJECT_ID/npm:node-19.0.0' args: ['--version'] +- name: 'gcr.io/$PROJECT_ID/npm:node-20.18.1' + args: ['--version'] +- name: 'gcr.io/$PROJECT_ID/npm:node-22.12.0' + args: ['--version'] +- name: 'gcr.io/$PROJECT_ID/npm:node-23.4.0' + args: ['--version'] # Test the examples with :latest @@ -125,3 +149,6 @@ images: - 'gcr.io/$PROJECT_ID/npm:node-16.18.0' - 'gcr.io/$PROJECT_ID/npm:node-18.12.0' - 'gcr.io/$PROJECT_ID/npm:node-19.0.0' +- 'gcr.io/$PROJECT_ID/npm:node-20.18.1' +- 'gcr.io/$PROJECT_ID/npm:node-22.12.0' +- 'gcr.io/$PROJECT_ID/npm:node-23.4.0'