url-shortener/Jenkinsfile

13 lines
195 B
Groovy

pipeline {
agent any
stages {
stage('Init') {
steps {
sh 'rbenv local 3.2.2'
sh 'echo "ENV[\"DB_NAME\"] ||= \"url_shortener.db\"" >> .env.rb'
}
}
}
}