diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b3ec461 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,13 @@ +pipeline { + agent any + + stages { + stage('Generate page with Hugo') { + steps { + sh 'hugo' + archiveArtifacts artifacts: 'public/**/*.*', fingerprint: true + } + } + } +} +