Archived
Template
1
Fork 0
This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
Vacy/Jenkinsfile
2022-11-10 20:37:11 -05:00

21 lines
No EOL
519 B
Groovy

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