Skip to content

Commit

Permalink
chore: additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
willgeorgetaylor committed Dec 29, 2023
1 parent c065daa commit 1f5ba0d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion badges/coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export async function run(): Promise<void> {
const pathToCLI = await core.group(
'Downloading Windows binary (.zip)',
async () => {
core.info(`Downloading from ${reducerReleaseUrl}...`)
const path = tc.extractZip(reducerReleaseUrl)
return path
}
Expand All @@ -56,6 +57,7 @@ export async function run(): Promise<void> {
const pathToCLI = await core.group(
'Downloading Mac binary (.tar.gz)',
async () => {
core.info(`Downloading from ${reducerReleaseUrl}...`)
const path = tc.extractTar(reducerReleaseUrl)
return path
}
Expand All @@ -69,6 +71,7 @@ export async function run(): Promise<void> {
const pathToCLI = await core.group(
'Downloading Linux binary (.tar.gz)',
async () => {
core.info(`Downloading from ${reducerReleaseUrl}...`)
const path = tc.extractTar(reducerReleaseUrl)
return path
}
Expand Down

0 comments on commit 1f5ba0d

Please sign in to comment.