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
console.log("package.json file written successfully\n",data);
35
+
}
36
+
37
+
asyncfunctionverifyRepoIsPublic(){
38
+
if(!context.payload.repository.private){
39
+
console.log("Repository is public, all good.");
40
+
return;
41
+
}
42
+
console.log("Repository must be public to publish",
43
+
`Repository must be public to publish the extension to the extension store.\n
44
+
If you want to create a private source extension, create another public repo just to create releases an publich the extension without making the source code public.`
0 commit comments