@cmflow/cli 0.73.2 → 0.73.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/common/get-config.js +3 -1
package/package.json
CHANGED
package/src/common/get-config.js
CHANGED
|
@@ -132,7 +132,9 @@ export function getConfig () {
|
|
|
132
132
|
get DEPLOY_ON_DOCKER () {
|
|
133
133
|
return toBool(process.env.DEPLOY_ON_DOCKER) && DOCKER_HUB_ID && DOCKER_HUB_PWD
|
|
134
134
|
},
|
|
135
|
-
DEPLOY_ON_HEROKU
|
|
135
|
+
get DEPLOY_ON_HEROKU () {
|
|
136
|
+
return process.env.DEPLOY_ON_HEROKU ? toBool(process.env.DEPLOY_ON_HEROKU) && !!HEROKU_APP : !!HEROKU_APP
|
|
137
|
+
},
|
|
136
138
|
CI_SKIP: '[ci skip]',
|
|
137
139
|
RELEASE_CANDIDATE_TAG: '[MEP]',
|
|
138
140
|
ORIGIN: 'origin',
|