build: investigate why fetching doesnt work

fixed probably
This commit is contained in:
xHyroM 2023-04-08 13:30:01 +02:00
parent 5adef49cec
commit c7058b83c8
No known key found for this signature in database
GPG key ID: BE0423F386C436AA

View file

@ -41,7 +41,7 @@ const projects: Project[] = [
}, },
{ {
name: "setup-bun", name: "setup-bun",
link: "https://github.com/xHyroM/setup-bun", link: "https://github.com/oven-sh/setup-bun",
desc: "Set up your GitHub Actions workflow with a specific version of Bun.", desc: "Set up your GitHub Actions workflow with a specific version of Bun.",
}, },
{ {
@ -93,15 +93,24 @@ const projects: Project[] = [
for (const project of projects) { for (const project of projects) {
try { try {
const repository = await ( const rawRepository = await fetch(
await fetch(`https://api.github.com/repos/${project.link.slice(19)}`, { `https://api.github.com/repos/${project.link.slice(19)}`,
{
headers: { headers: {
Authorization: `Bearer ${import.meta.env.GITHUB_ACCESS_TOKEN}`, Authorization: `Bearer ${import.meta.env.GITHUB_ACCESS_TOKEN}`,
}, },
}) }
).json(); ).catch(console.log);
if (!rawRepository) {
project.stats = {
forks: 0,
stars: 0,
};
console.log(repository); //debug continue;
}
const repository = await rawRepository.json();
project.stats = { project.stats = {
forks: repository.forks, forks: repository.forks,