mirror of
https://github.com/jwetzell/personal-site.git
synced 2026-08-16 04:33:26 +00:00
17 lines
199 B
Groovy
17 lines
199 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('error') {
|
|
agent {
|
|
docker {
|
|
image 'klakegg/hugo:ci'
|
|
}
|
|
|
|
}
|
|
steps {
|
|
sh 'hugo version'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |