Skip to content

Commit 6c4630f

Browse files
committed
fix: add bearer prefix for token
1 parent d51557d commit 6c4630f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/download-url.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async function getShaDownloadMeta(options: Input): Promise<DownloadMeta> {
6565
return {
6666
url: artifacts.artifacts.find((item) => item.name === name)
6767
.archive_download_url,
68-
auth: token,
68+
auth: `Bearer ${token}`,
6969
};
7070
}
7171

0 commit comments

Comments
 (0)