pipeline { agent any stages { stage('Generate page with Hugo') { steps { sh 'hugo' archiveArtifacts artifacts: 'public/**/*.*', fingerprint: true } } } }