-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile.deploy
More file actions
45 lines (45 loc) · 1.01 KB
/
Copy pathJenkinsfile.deploy
File metadata and controls
45 lines (45 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
skipDefaultCheckout()
ansiColor('xterm')
}
parameters {
string(name: 'VERSION', defaultValue: 'master')
}
stages {
stage('Checkout') {
steps {
checkout scm
sh 'git checkout $VERSION'
}
}
stage('Build') {
agent {
docker {
image 'node:24-alpine'
reuseNode true
}
}
steps {
sh 'npm install'
sh 'npm run docs:build'
}
}
stage('Deploy') {
steps {
sh 'mv docs/.vitepress/dist docker'
dir('docker') {
sh 'docker compose build --no-cache'
sh 'docker compose up -d'
}
}
}
}
post {
always {
cleanWs()
}
}
}