Fix
Apps/everybody-mov/pipeline/head There was a failure building this commit Details

This commit is contained in:
Amber McCloughan 2022-09-04 00:54:45 -04:00
parent 6a113699ad
commit 467c4d9c9f
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -75,9 +75,9 @@ pipeline {
passwordVariable: 'API_TOKEN_PASS' passwordVariable: 'API_TOKEN_PASS'
)]) { )]) {
sh ''' sh '''
curl -H 'Authorization: Bearer $API_TOKEN_PASS' -H 'Content-Type: application/json' \ curl -H "Authorization: Bearer $API_TOKEN_PASS" -H "Content-Type: application/json" \
-X POST 'https://api.digitalocean.com/v2/apps/$APP_ID/deployments' -X POST "https://api.digitalocean.com/v2/apps/$APP_ID/deployments"
-d '{ "force_build" : true }' -d "{ \"force_build\" : true }"
''' '''
} }
} }