@cmflow/cli 0.73.3 → 0.73.4
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
CHANGED
|
@@ -8,16 +8,16 @@ export async function dockerPublish (context) {
|
|
|
8
8
|
if (DEPLOY_ON_DOCKER) {
|
|
9
9
|
await deployOnDockerHub(context)
|
|
10
10
|
} else {
|
|
11
|
-
logger.info('Skip docker publish')
|
|
11
|
+
logger.info('Skip docker publish DEPLOY_ON_DOCKER: ', DEPLOY_ON_DOCKER)
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
if (DEPLOY_ON_HEROKU) {
|
|
15
15
|
await deployOnHeroku(context)
|
|
16
16
|
} else {
|
|
17
|
-
logger.info('Skip heroku publish')
|
|
17
|
+
logger.info('Skip heroku publish DEPLOY_ON_HEROKU: ', DEPLOY_ON_HEROKU)
|
|
18
18
|
}
|
|
19
19
|
} else {
|
|
20
|
-
logger.info('Skip docker/heroku publish')
|
|
20
|
+
logger.info('Skip docker/heroku publish SKIP_DEPLOY: ', SKIP_DEPLOY)
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|