From ea7c869279afaed7185f446f01f7753e43aa9e78 Mon Sep 17 00:00:00 2001 From: vsol <45532845+blipk@users.noreply.github.com> Date: Sat, 31 Aug 2024 13:12:01 +1000 Subject: [PATCH] update workflow --- .github/workflows/ci-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 836f86211..9bf25fd16 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -57,9 +57,9 @@ jobs: async function downloadArtifact(url, dest) { const response = await fetch(url, { - headers: { - Authorization: `Bearer ${process.env.GH_TOKEN}`, - } + //headers: { + // Authorization: `Bearer ${process.env.GH_TOKEN}`, + //} }); if (!response.ok) throw new Error(`Failed to fetch ${url} - ${response.statusText}`); const fileStream = fs.createWriteStream(dest);