Skip to content

Commit

Permalink
Fix: rename output
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael B. Gale committed Jun 13, 2023
1 parent 0930314 commit 4518431
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/resolve-environment-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/resolve-environment-action.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion resolve-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
description: The language to infer the build environment configuration for.
required: true
outputs:
configuration:
environment:
description: The inferred build environment configuration.
runs:
using: 'node16'
Expand Down
2 changes: 1 addition & 1 deletion src/resolve-environment-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function run() {
}

const result = await runResolveBuildEnvironment(config.codeQLCmd, logger, language);
core.setOutput("configuration", result);
core.setOutput("environment", result);
} catch (unwrappedError) {
const error = wrapError(unwrappedError);
core.setFailed(error.message);
Expand Down

0 comments on commit 4518431

Please sign in to comment.