21 lines
520 B
Text
21 lines
520 B
Text
|
pipeline {
|
||
|
agent {
|
||
|
label 'optiplex'
|
||
|
}
|
||
|
|
||
|
stages {
|
||
|
stage('Update Website'){
|
||
|
steps {
|
||
|
sh "chmod -R 777 ./*"
|
||
|
|
||
|
sh "sudo bundle install"
|
||
|
sh "bundle exec jekyll deploy"
|
||
|
|
||
|
sh "mv ./_site/ ./blueanimates/"
|
||
|
sh "rm -R /usr/share/nginx/blueanimates/"
|
||
|
sh "cp -R ./blueanimates/ /usr/share/nginx/blueanimates/"
|
||
|
sh "rm -R ./blueanimates/"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|