Skip to content

Commit b7b4a79

Browse files
fix host-id parameter
1 parent 74e9d02 commit b7b4a79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62931,7 +62931,7 @@ class Config {
6293162931
iamRoleName: core.getInput('iam-role-name'),
6293262932
runnerHomeDir: core.getInput('runner-home-dir'),
6293362933
scope: core.getInput('scope'),
62934-
hostId: core.getInput('hostId'),
62934+
hostId: core.getInput('host-id'),
6293562935
};
6293662936

6293762937
this.GITHUB_SCOPES = {

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Config {
1515
iamRoleName: core.getInput('iam-role-name'),
1616
runnerHomeDir: core.getInput('runner-home-dir'),
1717
scope: core.getInput('scope'),
18-
hostId: core.getInput('hostId'),
18+
hostId: core.getInput('host-id'),
1919
};
2020

2121
this.GITHUB_SCOPES = {

0 commit comments

Comments
 (0)