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() {
14831483 case 'linux' : {
14841484 const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _linux_amd64.zip` ;
14851485 const downloadPath = yield tc . downloadTool ( toolUrl ) ;
1486- const extPath = yield tc . extractTar ( downloadPath ) ;
1486+ const extPath = yield tc . extractZip ( downloadPath ) ;
14871487 const cachedPath = yield tc . cacheDir ( extPath , 'sqlc' , version ) ;
14881488 core . addPath ( cachedPath ) ;
14891489 break ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ async function run(): Promise<void> {
3232 case 'linux' : {
3333 const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _linux_amd64.zip`
3434 const downloadPath = await tc . downloadTool ( toolUrl )
35- const extPath = await tc . extractTar ( downloadPath )
35+ const extPath = await tc . extractZip ( downloadPath )
3636 const cachedPath = await tc . cacheDir ( extPath , 'sqlc' , version )
3737 core . addPath ( cachedPath )
3838 break
You can’t perform that action at this time.
0 commit comments