ci: correct path again

This commit is contained in:
iCrawl
2023-04-11 18:36:13 +02:00
parent a0c57abadd
commit dcf8757d35

View File

@@ -17,7 +17,7 @@ const sql = connect({
url: process.env.DATABASE_URL!,
});
const globber = await create(`docs/*/${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 {