@biffo/cli 0.41.0 → 0.41.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/core.version +1 -1
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/core.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.41.
|
|
1
|
+
0.41.1
|
package/dist/index.js
CHANGED
|
@@ -3972,7 +3972,10 @@ async function configureSiblingGithub(github, config, coreConfig, session, coreI
|
|
|
3972
3972
|
await github.createEnvironments(config);
|
|
3973
3973
|
await github.enableVulnerabilityAlerts(org, repo);
|
|
3974
3974
|
await github.setRepoVariable(org, repo, "PROJECT_NAME", config.project.name);
|
|
3975
|
-
|
|
3975
|
+
const pathPrefix = resolvePathPrefix(config);
|
|
3976
|
+
if (pathPrefix !== "") {
|
|
3977
|
+
await github.setRepoVariable(org, repo, "PATH_PREFIX", pathPrefix);
|
|
3978
|
+
}
|
|
3976
3979
|
await github.setRepoVariable(org, repo, "AWS_REGION", awsConfig(config).region);
|
|
3977
3980
|
await github.setRepoVariable(org, repo, "SIBLING_DEPLOY_ENABLED", "true");
|
|
3978
3981
|
try {
|