diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 4237bd8..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,22 +0,0 @@ -pipeline { - agent any - tools { - nodejs "nodejs-default" - } - stages { - stage('Build') { - steps { - sh 'npm install' - sh 'npm run build' - } - } - stage('Deploy') { - steps { - sh '''#!/bin/sh -rm -r /var/www/public/html/drums -cp ./public /var/www/public/html/drums -''' - } - } - } -}