Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
blipk committed Aug 31, 2024
1 parent 6fbfebe commit ea7c869
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ea7c869

Please sign in to comment.