Skip to content

Commit

Permalink
fix: error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuni-dev committed Jul 10, 2023
1 parent 6b6809a commit a1e7986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/restore/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function run(): Promise<void> {
)
}
} catch (error) {
if (error instanceof Error) core.setFailed(error.message)
if (error instanceof Error) core.warning(error.message)
}

try {
Expand Down

0 comments on commit a1e7986

Please sign in to comment.