Skip to content

Commit 4d25ab4

Browse files
authored
Update goreleaser.ts
1 parent b508e2e commit 4d25ab4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/goreleaser.ts

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ export async function install(distribution: string, version: string): Promise<st
2828
core.info('Extracting GoReleaser');
2929
let extPath: string;
3030
if (context.osPlat == 'win32') {
31+
if(!downloadPath.endsWith('.zip')) {
32+
let newPath = downloadPath + '.zip'
33+
fs.renameSync(downloadPath, newPath)
34+
downloadPath = newPath
35+
}
3136
extPath = await tc.extractZip(downloadPath);
3237
} else {
3338
extPath = await tc.extractTar(downloadPath);

0 commit comments

Comments
 (0)