removed jenkinsfile
All checks were successful
ci/woodpecker/push/main Pipeline was successful

This commit is contained in:
Ell 2023-07-02 19:16:34 +02:00
parent d4d53d5b75
commit f26eb35b29

24
Jenkinsfile vendored
View file

@ -1,24 +0,0 @@
pipeline {
agent { label 'web' }
stages {
stage('Build') {
when {
branch 'master'
}
steps {
sh '''cd main
bundle
bundle exec jekyll build'''
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
sh "rm -rf /var/www/ellpeck/*"
sh "cp -r main/_site/. /var/www/ellpeck"
}
}
}
}