删除无用日志
Some checks failed
Continuous Integration / GitHub Actions Test (push) Failing after 28s

This commit is contained in:
walker 2024-03-15 15:54:02 +08:00
parent 45463789e1
commit fbf3b0ab82
3 changed files with 0 additions and 1 deletions

BIN
dist/index.js generated vendored

Binary file not shown.

BIN
dist/index.js.map generated vendored

Binary file not shown.

View File

@ -20,6 +20,5 @@ export async function download(fileName: string): Promise<string> {
const downloadUrl = `${DownloadBaseUrl}${fileName}`
core.info(`Downloading go from ${downloadUrl}`)
const downloadPath = await tc.downloadTool(downloadUrl)
core.info(`Extracting Go from ${downloadPath}`)
return downloadPath
}