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
520 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"
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/"
}
}
}
}