Added Jenkinsfile

This commit is contained in:
2021-06-15 14:06:25 -05:00
parent faa3a465c0
commit 4b751e74c0
Vendored
+16
View File
@@ -0,0 +1,16 @@
pipeline {
agent {
docker {
image 'klakegg/hugo:latest'
}
}
stages {
stage('') {
steps {
sh 'hugo build'
}
}
}
}