in src/kubectl/kubectl.ts [12:26]
throw Error(
'Kubectl not found. You must install it before running this action.'
)
for (const manifest of manifests) {
const toolRunner = new ToolRunner(kubectlPath, [
'apply',
'-f',
manifest,
'--dry-run=server',
'--namespace',
namespace
])
await toolRunner.exec()
}