url-shortener/Jenkinsfile

11 lines
114 B
Groovy

pipeline {
agent any
stages {
stage('Init') {
steps {
sh 'rbenv local 3.2.2'
}
}
}