From 9bd1aeb1a5e879c8ff3a32f2b97e6b7d3249c5b7 Mon Sep 17 00:00:00 2001 From: fernando Date: Sat, 5 Oct 2024 00:35:03 +0000 Subject: [PATCH] Update Jenkinsfile.groovy --- Jenkinsfile.groovy | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index ecbe345..a4ff150 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -5,11 +5,6 @@ pipeline { } } stages { - stage('Clone Repository') { - steps { - git url: 'http://gitea:3333/fernando/thp-web.git', branch: 'master' - } - } stage('Install pnpm') { steps { sh 'npm i -g pnpm' @@ -22,7 +17,7 @@ pipeline { } stage('Buid') { steps { - sh 'npm build' + sh 'pnpm build' } } }