From 259fb3b91f1c3a1a3d51987d4d130488ea7c8d17 Mon Sep 17 00:00:00 2001 From: GOMA Date: Tue, 15 Jul 2025 15:21:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20deployment=20pipeline=20configur?= =?UTF-8?q?ation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..069fee5 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +default: + image: node:latest + +stages: + - deploy + +publish-npm: + stage: deploy + script: + - echo "@cellule-financiere-pmo:registry=https://${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/" > .npmrc + - echo "//${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}" >> .npmrc + - npm publish + only: + - tags \ No newline at end of file