Add jenkinsfile
This commit is contained in:
parent
1bb0a2be8a
commit
0ddc50e153
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
|
.env
|
||||||
|
30
Jenkinsfile
vendored
Normal file
30
Jenkinsfile
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
stages {
|
||||||
|
stage("Populate env") {
|
||||||
|
steps {
|
||||||
|
sh 'rm .env || true'
|
||||||
|
sh 'echo VITE_BACKEND_URL=https://rimajon2.araozu.dev>>.env'
|
||||||
|
sh 'echo VITE_WS_URL=wss://rimajon2.araozu.dev>>.env'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Build') {
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image "ianwalter/pnpm"
|
||||||
|
reuseNode true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'pnpm i'
|
||||||
|
sh 'pnpm build'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Deploy') {
|
||||||
|
steps {
|
||||||
|
sh 'rm -rf /var/www/rimajon2/*'
|
||||||
|
sh 'cp -r ./dist/* /var/www/rimajon2/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user