You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Enabling ${featureName}. This can be disabled by setting the ${envVar} environment variable to 'false'. See ${DocUrl.DEFINE_ENV_VARIABLES} for more information.`,
143
141
);
144
-
core.exportVariable(envVar,"true");
142
+
exportVariable(envVar,"true");
145
143
}
146
144
}else{
147
145
logger.info(`Disabling ${featureName}.`);
148
-
core.exportVariable(envVar,"false");
146
+
exportVariable(envVar,"false");
149
147
}
150
148
}
151
149
@@ -165,7 +163,7 @@ export async function runAutobuild(
0 commit comments