ci: fix docs upload path

This commit is contained in:
iCrawl
2023-04-10 13:23:27 +02:00
parent 0019700869
commit 69cdeb7296

View File

@@ -17,7 +17,7 @@ const sql = connect({
url: process.env.DATABASE_URL!,
});
const globber = await create(`packages/${pkg}/docs/docs.api.json`);
const globber = await create(`docs/${pkg}/docs/docs.api.json`);
for await (const file of globber.globGenerator()) {
const data = await readFile(file, 'utf8');
try {