We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4158d2b commit f0f0822Copy full SHA for f0f0822
src/installer.ts
@@ -164,7 +164,7 @@ async function downloadRelease(version: string): Promise<string> {
164
if (typeof error === "string" || error instanceof Error) {
165
core.debug(error.toString());
166
}
167
- throw new Error(`Failed to download version ${version}: ${error}`);
+ throw new Error(`Failed to download version ${version} from ${downloadUrl}: ${error}`);
168
169
170
// Extract
0 commit comments