We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c3eadcb + 7b9b5ed commit 944a418Copy full SHA for 944a418
scripts/gitbook-sync-sdk.mjs
@@ -23,7 +23,7 @@ if (!GITBOOK_ORG_ID) fail("Missing GITBOOK_ORG_ID");
23
if (!GIT_REF) fail("Missing GIT_REF");
24
25
const tag = GIT_REF.replace(/^refs\/tags\//, "");
26
-if (!/^sdk@/.test(tag)) fail(`Tag must start with sdk@: ${tag}`);
+if (!/^js\/sdk@/.test(tag)) fail(`Tag must start with js/sdk@: ${tag}`);
27
const version = tag.split("@")[1];
28
if (!version) fail("Cannot derive version from tag");
29
0 commit comments