Skip to content

Commit

Permalink
fix: fix linter on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoranders committed Oct 28, 2023
1 parent 144f7f9 commit 1706726
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ export const run = async (): Promise<void> => {
core.setOutput('id', release.id.toString());
core.setOutput('url', release.url);
core.setOutput('upload_url', release.upload_url);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: Error | any) {
// eslint-enable-next-line @typescript-eslint/no-explicit-any
core.setFailed(error);
}
};

0 comments on commit 1706726

Please sign in to comment.