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