Skip to content

Commit a62f767

Browse files
authored
Merge branch 'main' into issue-29
2 parents 3790cc8 + 1429cd3 commit a62f767

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/main.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import * as github from "@actions/github";
66
import * as glob from "@actions/glob";
77
import * as tc from "@actions/tool-cache";
88
import fs from "fs";
9+
import path from "path";
910
import * as os from "os";
1011
import { join } from "node:path";
1112
import { exit } from "process";
@@ -73,7 +74,14 @@ if (!found) {
7374
found = await tc.downloadTool(
7475
`https://github.com/typst/typst/releases/download/v${version}/${file}`
7576
);
76-
if (file.endsWith(".zip")) {
77+
if (archiveExt == ".zip") {
78+
if (!found.endsWith('.zip')) {
79+
fs.renameSync(
80+
found,
81+
path.join(path.dirname(found), `${path.basename(found)}.zip`),
82+
);
83+
found = path.join(path.dirname(found), `${path.basename(found)}.zip`);
84+
}
7785
found = await tc.extractZip(found);
7886
} else {
7987
found = await tc.extractTar(found, undefined, "xJ");

0 commit comments

Comments
 (0)