ci: dont set the ci to failed on fail to upload docs

This commit is contained in:
iCrawl 2023-11-13 21:31:46 +01:00
parent 0063dae43b
commit 1d2d01e1f5
No known key found for this signature in database
GPG key ID: 1AB888B16355FBB2

View file

@ -23,6 +23,6 @@ for await (const file of globber.globGenerator()) {
await pool.sql`insert into documentation (version, data) values (${version}, ${data}) on conflict (name, version) do update set data = EXCLUDED.data`;
} catch (error) {
const err = error as Error;
setFailed(err.message);
console.log(err.message);
}
}