Commit f6a3e390 authored by Guillermo Sanz López's avatar Guillermo Sanz López
Browse files

modify jenkinsfile

parent 82d849e1
Loading
Loading
Loading
Loading
+4 −13
Original line number Diff line number Diff line
@@ -18,23 +18,14 @@ pipeline {
            steps {
                echo 'Installing Dependencies'
                sh 'yarn install'
				echo 'Building NextJS App'
				//echo 'Building NextJS App'
				//sh 'node_modules/next/dist/bin/next build'
            }
        }
        stage('deploy development') {
            steps {
                echo 'Deploy Development'
            }
        }
        stage('deploy staging') {
            steps {
                echo 'Deploy Staging'
            }
        }
		stage('deploy production') {
        stage ('Build') {
            steps {
				echo 'Deploy Production'
                echo 'build'
                sh 'yarn build'
            }
        }
    }