run the deploy as the new bespoke role

This commit is contained in:
Joshua C. Forest 2021-10-28 13:01:11 -04:00
commit a860ea39eb

View file

@ -20,7 +20,9 @@ pipeline {
stages {
stage('deploy') {
steps {
sh "make serverless-deploy.${params.ENVIRONMENT}"
withAWS(role:'r-builds-deploy') {
sh "make serverless-deploy.${params.ENVIRONMENT}"
}
}
}
}