You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+35-4Lines changed: 35 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3,42 +3,73 @@ description: 'Cross platform action for setting up Ruby build environments. Run
3
3
author: 'MSP-Greg'
4
4
inputs:
5
5
ruby-version:
6
-
description: 'Used by ruby/setup-ruby. Ruby version. A value of "none" will bypass running ruby/setup-ruby'
6
+
description: |
7
+
Used by ruby/setup-ruby. Ruby version.
8
+
See https://github.com/ruby/setup-ruby/blob/master/README.md.
9
+
A value of 'none' will bypass running ruby/setup-ruby.
7
10
required: false
8
11
default: 'default'
9
12
bundler:
10
-
description: 'Used by ruby/setup-ruby. The version of Bundler to install. Either none, 1, 2, latest or Gemfile.lock. The default tries Gemfile.lock and otherwise uses latest.'
13
+
description: |
14
+
Used by ruby/setup-ruby. The version of Bundler to install.
15
+
See https://github.com/ruby/setup-ruby/blob/master/README.md.
11
16
required: false
12
17
default: 'default'
13
18
bundler-cache:
14
-
description: 'Used by ruby/setup-ruby. Run "bundle install", and cache the result automatically. Either true or false.'
19
+
description: |
20
+
Used by ruby/setup-ruby. Run 'bundle install', and cache the result automatically.
21
+
See https://github.com/ruby/setup-ruby/blob/master/README.md.
15
22
required: false
16
23
default: 'false'
17
24
working-directory:
18
-
description: 'Used by ruby/setup-ruby. The working directory to use for resolving paths for .ruby-version, .tool-versions and Gemfile.lock.'
25
+
description: |
26
+
Used by ruby/setup-ruby. The working directory to use for resolving paths for
27
+
.ruby-version, .tool-versions and Gemfile.lock.
28
+
See https://github.com/ruby/setup-ruby/blob/master/README.md.
19
29
required: false
20
30
default: '.'
31
+
cache-version:
32
+
description: |
33
+
Used by ruby/setup-ruby. Arbitrary string that will be added to the cache key
34
+
of the bundler cache. Set or change it if you need to invalidate the cache.
35
+
See https://github.com/ruby/setup-ruby/blob/master/README.md.
0 commit comments