421607cf97
the inline `node -e` + `TOKEN=$(...)` approach broke because `core.getIDToken()` in @actions/core writes `::debug::` and `::add-mask::` to stdout, polluting the captured value. `node cli.ts gha token` uses `core.setOutput()` which writes to the $GITHUB_OUTPUT file instead of stdout. Made-with: Cursor
8 lines
109 B
JavaScript
8 lines
109 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { runPullfrogCli } from "./runCli.ts";
|
|
|
|
runPullfrogCli({
|
|
cliArgs: ["gha"],
|
|
});
|