File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1483,7 +1483,7 @@ function run() {
1483
1483
case 'linux' : {
1484
1484
const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _linux_amd64.zip` ;
1485
1485
const downloadPath = yield tc . downloadTool ( toolUrl ) ;
1486
- const extPath = yield tc . extractTar ( downloadPath ) ;
1486
+ const extPath = yield tc . extractZip ( downloadPath ) ;
1487
1487
const cachedPath = yield tc . cacheDir ( extPath , 'sqlc' , version ) ;
1488
1488
core . addPath ( cachedPath ) ;
1489
1489
break ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ async function run(): Promise<void> {
32
32
case 'linux' : {
33
33
const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _linux_amd64.zip`
34
34
const downloadPath = await tc . downloadTool ( toolUrl )
35
- const extPath = await tc . extractTar ( downloadPath )
35
+ const extPath = await tc . extractZip ( downloadPath )
36
36
const cachedPath = await tc . cacheDir ( extPath , 'sqlc' , version )
37
37
core . addPath ( cachedPath )
38
38
break
You can’t perform that action at this time.
0 commit comments