Merge pull request #257 from oke-py/refactor/remove-run-call-from-main

refactor(main): remove run() call as index.ts is now the entry point
This commit is contained in:
Naoki Oketani
2025-05-07 19:48:12 +09:00
committed by GitHub
3 changed files with 1 additions and 4 deletions

1
dist/index.js generated vendored
View File

@@ -35223,7 +35223,6 @@ async function run() {
coreExports.setFailed(e?.message ?? 'Unknown error occurred');
}
}
run();
/**
* The entrypoint for the action. This file simply imports and runs the action's

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@@ -138,5 +138,3 @@ export async function run(): Promise<void> {
core.setFailed((e as Error)?.message ?? 'Unknown error occurred')
}
}
run()