Added Jenkinsfile

This commit is contained in:
2021-06-15 14:32:25 -05:00
parent 887417e68e
commit 48b08f4394
Vendored
+2 -2
View File
@@ -1,7 +1,7 @@
pipeline {
agent any
stages {
stage('error') {
stage('Hugo Build') {
agent {
docker {
image 'klakegg/hugo:ci'
@@ -9,7 +9,7 @@ pipeline {
}
steps {
sh 'hugo version'
sh 'hugo build --minify --buildDrafts'
}
}