Skip to content

Commit

Permalink
fix host-id parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
arielly-parussulo committed Apr 28, 2023
1 parent 74e9d02 commit b7b4a79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62931,7 +62931,7 @@ class Config {
iamRoleName: core.getInput('iam-role-name'),
runnerHomeDir: core.getInput('runner-home-dir'),
scope: core.getInput('scope'),
hostId: core.getInput('hostId'),
hostId: core.getInput('host-id'),
};

this.GITHUB_SCOPES = {
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Config {
iamRoleName: core.getInput('iam-role-name'),
runnerHomeDir: core.getInput('runner-home-dir'),
scope: core.getInput('scope'),
hostId: core.getInput('hostId'),
hostId: core.getInput('host-id'),
};

this.GITHUB_SCOPES = {
Expand Down

0 comments on commit b7b4a79

Please sign in to comment.