We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
chrome-path
1 parent 8605f32 commit b216760Copy full SHA for b216760
action.yml
@@ -10,6 +10,8 @@ inputs:
10
outputs:
11
chrome-version:
12
description: 'The installed Google Chrome/Chromium version. Useful when given a latest version.'
13
+ chrome-path:
14
+ description: 'The installed Google Chrome/Chromium path.'
15
runs:
16
using: 'node16'
17
main: 'index.js'
src/index.ts
@@ -60,6 +60,7 @@ async function run(): Promise<void> {
60
core.info(`Successfully setup chromium version ${actualVersion}`);
61
62
core.setOutput("chrome-version", actualVersion);
63
+ core.setOutput("chrome-path", binPath);
64
} catch (error) {
65
if (hasErrorMessage(error)) {
66
core.setFailed(error.message);
0 commit comments