araozu.dev/Jenkinsfile

27 lines
406 B
Plaintext
Raw Permalink Normal View History

2023-11-18 01:57:45 +00:00
pipeline {
2024-12-16 02:33:10 +00:00
agent any
2024-12-16 02:29:25 +00:00
stages {
stage("Build") {
agent {
docker {
image 'node:22-alpine'
reuseNode true
}
2024-10-06 22:31:31 +00:00
}
steps {
2024-12-16 02:29:25 +00:00
sh 'npm i -g pnpm'
2024-10-06 22:31:31 +00:00
sh 'pnpm i'
sh 'pnpm build'
}
}
stage('Deploy') {
steps {
sh 'rm -rf /var/www/dev.araozu/*'
sh 'mv -f dist/* /var/www/dev.araozu/'
2024-12-16 02:29:25 +00:00
sh 'docker-compose down || true'
sh 'docker-compose up -d'
2024-10-06 22:31:31 +00:00
}
}
}
2023-11-18 01:57:45 +00:00
}