Skip to content

Commit

Permalink
show version
Browse files Browse the repository at this point in the history
  • Loading branch information
maximtop committed Apr 27, 2024
1 parent ce50e97 commit a810247
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ program.command('run-action')
workflowRunCompletionTimeout,
secret: secrets,
syncSecrets,
version,
} = options;
const token = process.env.GITHUB_TOKEN;
if (!token) {
Expand Down Expand Up @@ -143,7 +142,7 @@ program.command('run-action')
workflowRunCompletionTimeoutMs: workflowRunCompletionTimeout,
secrets,
syncSecrets,
version,
version: packageJson.version,
});
} catch (e) {
logger.error(e);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/GitHubActionsRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class GitHubActionsRunner {
* @param root0.workflowRunCompletionTimeoutMs Wait for workflow run completion timeout.
* @param root0.secrets Secrets to pass to the action.
* @param root0.syncSecrets Sync secrets with the repository.
* @param root0.version github actions runner version.
* @param root0.version A github-actions-runner version.
* @returns A promise that resolves when the action is completed.
* @throws Error if something went wrong.
*/
Expand Down

0 comments on commit a810247

Please sign in to comment.