Skip to content

Commit

Permalink
Fix saving cache taking too long (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed May 23, 2024
1 parent 60cea60 commit f8b8a1e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup-micromamba",
"version": "1.8.1",
"version": "1.9.0",
"private": true,
"description": "Action to setup micromamba",
"scripts": {
Expand Down
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 f8b8a1e

Please sign in to comment.