Merge pull request #99 from rstudio/update-deploy-role

run the deploy as the new bespoke role
This commit is contained in:
Joshua C. Forest 2021-10-28 17:54:54 +00:00 committed by GitHub
commit d727889486
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}"
}
}
}
}