This commit is contained in:
Jozef Steinhübl 2026-01-04 22:35:54 +01:00
parent c83ed9dad7
commit db67fb2ac9
No known key found for this signature in database
GPG Key ID: 8D9A5E4549AA84FD

View File

@ -85,7 +85,7 @@ async function getShaDownloadMeta(options: Input): Promise<DownloadMeta> {
return { return {
url: artifact.archive_download_url, url: artifact.archive_download_url,
auth: `Bearer ${token}`, auth: token ? `Bearer ${token}` : undefined,
}; };
} }