Files
fymio.us/Jenkinsfile
2026-02-28 09:17:09 +03:00

27 lines
596 B
Groovy

pipeline {
agent any
stages {
stage('Install') {
steps {
sh 'npm install'
}
}
stage('Build') {
steps {
sh 'npm run build'
}
}
stage('Deploy') {
steps {
sshagent(['fymio']) {
sh 'scp -o StrictHostKeyChecking=no -r dist/* fymio@172.17.0.1:/var/www/fymio.us/'
}
}
}
}
post {
failure { echo 'Deployment failed!' }
success { echo 'Deployment successful!' }
}
}