We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29646e9 commit 75496b6Copy full SHA for 75496b6
1 file changed
packages/action/index.ts
@@ -7,9 +7,15 @@ import { generateContributionSnake } from "./generateContributionSnake";
7
console.log(core.getInput("user_name"));
8
console.log(core.getInput("gif_out_path"));
9
console.log("--");
10
+ console.log("--");
11
console.log(process.cwd());
12
13
console.log(fs.readdirSync(process.cwd()));
14
15
16
+ console.log(process.env.GITHUB_WORKSPACE);
17
18
+ console.log(fs.readdirSync(process.cwd()));
19
20
const buffer = await generateContributionSnake(core.getInput("user_name"));
21
fs.writeFileSync(core.getInput("gif_out_path"), buffer);
0 commit comments