Skip to content

Commit f757ad8

Browse files
committed
use correct input for token
1 parent dc0d3e1 commit f757ad8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26191,7 +26191,7 @@ async function get_repo(
2619126191
async function run() {
2619226192
const target_repo = core$4.getInput("repo");
2619326193
const target_branch = core$4.getInput("branch");
26194-
const CF_TOKEN = core$4.getInput("token");
26194+
const CF_TOKEN = core$4.getInput("cf_token");
2619526195
const docs_path = core$4.getInput("docs_path");
2619626196
const pkg_path = core$4.getInput("pkg_path");
2619726197

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async function get_repo(
5555
async function run() {
5656
const target_repo = core.getInput("repo");
5757
const target_branch = core.getInput("branch");
58-
const CF_TOKEN = core.getInput("token");
58+
const CF_TOKEN = core.getInput("cf_token");
5959
const docs_path = core.getInput("docs_path");
6060
const pkg_path = core.getInput("pkg_path");
6161

0 commit comments

Comments
 (0)