Files
publish-immutable-action/src/index.ts
T
boxofyellow 5e2391735e tests
2024-02-02 12:58:40 -05:00

11 lines
257 B
TypeScript

/**
* The entrypoint for the action.
*/
import { run } from './main'
import minimist from 'minimist'
const path = minimist(process.argv.slice(2)).path || '.'
console.log(path)
// eslint-disable-next-line @typescript-eslint/no-floating-promises
run(path)