ci: separate website deploy

This commit is contained in:
iCrawl
2023-11-08 10:38:44 +01:00
parent da455bceea
commit 413d6d67c5
5 changed files with 73 additions and 10 deletions

View File

@@ -181,7 +181,7 @@ export async function generateAllIndices({
if (writeToFile) {
await writeIndexToFileSystem(members, pkg, version);
} else {
indices.push({ index: `${pkg}-${version.replaceAll('.', '-')}`, data: members });
indices.push({ index: `${pkg.replaceAll('.', '-')}-${version.replaceAll('.', '-')}`, data: members });
}
}
}