Skip to content

Commit d39f6cc

Browse files
bitmaskitValentin Uchkunev
and
Valentin Uchkunev
authored
chore(remove extra log line) (#244)
* remove extra log line * upgrade download-artifact@v4 --------- Co-authored-by: Valentin Uchkunev <[email protected]>
1 parent 67cb569 commit d39f6cc

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

dist/index.js

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/build.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,9 @@ async function downloadWithAuth (url: string, destination: string, wdfGithubToke
7979
info(`📂 Created directory: ${dir}`)
8080
}
8181

82-
const zipFile = await downloadZip(url, destination, wdfGithubToken).catch((err) => {
82+
return await downloadZip(url, destination, wdfGithubToken).catch((err) => {
8383
throw new Error(`Can't download with auth: ${err}`)
8484
})
85-
info(`✅ Downloaded successfully to ${zipFile}`)
86-
return zipFile
8785
} catch (error) {
8886
setFailed(`❌ Download failed: ${error instanceof Error ? error.message : String(error)}`)
8987
return ''

0 commit comments

Comments
 (0)