Files
arne-drums/Jenkinsfile
Daniel Ledda 01fabc4eda
Some checks are pending
Gitea djledda.de/arne-drums/pipeline/head Build queued...
fix: fixed jenkinsfile
2021-08-29 17:15:59 +02:00

22 lines
393 B
Groovy

pipeline {
agent any
tools {
nodejs "nodejs-default"
}
stages {
stage('Build') {
steps {
sh 'npm install'
sh 'npm run build'
}
}
stage('Deploy') {
steps {
sh '''#!/bin/bash
/usr/bin/rsync ./public /var/www/public/html/drums'
'''
}
}
}
}