File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import * as github from "@actions/github";
6
6
import * as glob from "@actions/glob" ;
7
7
import * as tc from "@actions/tool-cache" ;
8
8
import fs from "fs" ;
9
+ import path from "path" ;
9
10
import * as os from "os" ;
10
11
import { join } from "node:path" ;
11
12
import { exit } from "process" ;
@@ -73,7 +74,14 @@ if (!found) {
73
74
found = await tc . downloadTool (
74
75
`https://github.com/typst/typst/releases/download/v${ version } /${ file } `
75
76
) ;
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
+ }
77
85
found = await tc . extractZip ( found ) ;
78
86
} else {
79
87
found = await tc . extractTar ( found , undefined , "xJ" ) ;
You can’t perform that action at this time.
0 commit comments