Skip to content

Commit

Permalink
fix: add bearer prefix for token
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Jul 29, 2024
1 parent d51557d commit 6c4630f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/download-url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function getShaDownloadMeta(options: Input): Promise<DownloadMeta> {
return {
url: artifacts.artifacts.find((item) => item.name === name)
.archive_download_url,
auth: token,
auth: `Bearer ${token}`,
};
}

Expand Down

0 comments on commit 6c4630f

Please sign in to comment.