Skip to content

Commit 762d5da

Browse files
committed
Removing output from action as it's not used.
1 parent c39a976 commit 762d5da

4 files changed

Lines changed: 0 additions & 9 deletions

File tree

action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ inputs:
99
description: 'Prepend the retrieved Ruby version to the PATH environment variable to make it available in subsequent actions or scripts without using the output variable.'
1010
default: 'true'
1111

12-
outputs:
13-
ruby-location:
14-
description: "The resolved folder of the Ruby distribution."
1512
runs:
1613
using: 'node'
1714
main: 'lib/main.js'

lib/find-ruby.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function default_1(inputs, platform) {
5353
const dest = '/usr/bin/ruby';
5454
exec.exec('sudo ln', ['-sf', path.join(toolPath, 'ruby'), dest]); // replace any existing
5555
}
56-
//core.setOutput('ruby-location', toolPath);
5756
if (inputs.addToPath === 'true') {
5857
core.addPath(toolPath);
5958
}

src/find-ruby.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ export default async function(inputs: ActionInputs, platform: Platform) {
4545
exec.exec('sudo ln', ['-sf', path.join(toolPath, 'ruby'), dest]); // replace any existing
4646
}
4747

48-
//core.setOutput('ruby-location', toolPath);
49-
5048
if (inputs.addToPath === 'true') {
5149
core.addPath(toolPath);
5250
}

tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
// "incremental": true, /* Enable incremental compilation */
55
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
66
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
7-
"lib": [
8-
"es6"
9-
],
107
// "allowJs": true, /* Allow javascript files to be compiled. */
118
// "checkJs": true, /* Report errors in .js files. */
129
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */

0 commit comments

Comments
 (0)