This repository has been archived on 2025-04-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vacy/Jenkinsfile

21 lines
519 B
Text
Raw Normal View History

2022-11-10 20:34:16 -05:00
pipeline {
agent {
label 'optiplex'
}
stages {
stage('Update Website'){
steps {
sh "chmod -R 777 ./*"
sh "sudo bundle install"
2022-11-10 20:37:11 -05:00
sh "bundle exec jekyll build"
2022-11-10 20:34:16 -05:00
sh "mv ./_site/ ./blueanimates/"
sh "rm -R /usr/share/nginx/blueanimates/"
sh "cp -R ./blueanimates/ /usr/share/nginx/blueanimates/"
sh "rm -R ./blueanimates/"
}
}
}
}