Files
arne-drums/Jenkinsfile
Daniel Ledda 834f174050
Some checks failed
Gitea djledda.de/arne-drums/pipeline/head There was a failure building this commit
chore: removed node tool from Jenkinsfile test
2021-08-28 20:59:38 +02:00

17 lines
252 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'npm install'
sh 'npm run build'
}
}
stage('Deploy') {
steps {
sh 'rsync ./public /var/www/public/html/drums'
}
}
}
}