mirror of
https://github.com/jwetzell/personal-site.git
synced 2026-08-17 13:13:24 +00:00
16 lines
164 B
Groovy
16 lines
164 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'klakegg/hugo:latest'
|
|
}
|
|
|
|
}
|
|
stages {
|
|
stage('') {
|
|
steps {
|
|
sh 'hugo build'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |