@cmflow/cli 0.73.0 → 0.73.1
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 -2
package/package.json
CHANGED
package/src/common/get-config.js
CHANGED
|
@@ -104,7 +104,6 @@ export function getConfig () {
|
|
|
104
104
|
REF_COMMIT,
|
|
105
105
|
GH_TOKEN,
|
|
106
106
|
HEROKU_APP,
|
|
107
|
-
SKIP_DEPLOY,
|
|
108
107
|
SKIP_GITHUB_PUBLISH,
|
|
109
108
|
GITHUB_PAGES_PATH,
|
|
110
109
|
REPOSITORY_URL,
|
|
@@ -154,13 +153,15 @@ export function getConfig () {
|
|
|
154
153
|
} = process.env
|
|
155
154
|
return DOCKER_REPOSITORY || `${OWNER || owner}/${PROJECT_NAME || projectName}`
|
|
156
155
|
},
|
|
156
|
+
get SKIP_DEPLOY () {
|
|
157
|
+
return toBool(process.env.SKIP_DEPLOY)
|
|
158
|
+
},
|
|
157
159
|
DOCKER_HUB_ID,
|
|
158
160
|
DOCKER_HUB_PWD,
|
|
159
161
|
HEROKU_APP,
|
|
160
162
|
REF_COMMIT,
|
|
161
163
|
GH_TOKEN,
|
|
162
164
|
REPOSITORY_URL: get(pkg, 'repository.url', get(pkg, 'repository', REPOSITORY_URL)),
|
|
163
|
-
SKIP_DEPLOY,
|
|
164
165
|
SKIP_GITHUB_PUBLISH,
|
|
165
166
|
GITHUB_PAGES_PATH,
|
|
166
167
|
GIT_USER_NAME,
|