Skip to content

Commit

Permalink
Fix saving cache taking too long
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed May 23, 2024
1 parent 60cea60 commit d478d70
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dist/main.js

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

26 changes: 14 additions & 12 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,16 +199,18 @@ const run = async () => {
await generateInfo(options)
}

run().catch((error) => {
if (core.isDebug()) {
run()
.catch((error) => {
if (core.isDebug()) {
throw error
}
if (error instanceof Error) {
core.setFailed(error.message)
exit(1)
} else if (typeof error === 'string') {
core.setFailed(error)
exit(1)
}
throw error
}
if (error instanceof Error) {
core.setFailed(error.message)
exit(1)
} else if (typeof error === 'string') {
core.setFailed(error)
exit(1)
}
throw error
})
})
.then(() => exit(0)) // workaround for https://github.com/actions/toolkit/issues/1578

0 comments on commit d478d70

Please sign in to comment.