We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b588a commit afe13c8Copy full SHA for afe13c8
src/action.ts
@@ -69,7 +69,9 @@ export const run = async (): Promise<void> => {
69
70
core.setOutput('id', asset.id.toString());
71
core.setOutput('url', asset.browser_download_url);
72
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
73
} catch (error: Error | any) {
74
+ // eslint-enable-next-line @typescript-eslint/no-explicit-any
75
core.setFailed(error);
76
}
77
};
0 commit comments