Files
setup-ruby/action.yml

15 lines
609 B
YAML
Raw Normal View History

2019-11-08 16:43:42 +00:00
name: 'Setup Ruby'
description: 'Set up a specific version of Ruby and add the command-line tools to the PATH'
2019-06-26 14:22:50 -04:00
author: 'GitHub'
inputs:
2019-08-13 16:29:23 -04:00
ruby-version:
2019-06-27 11:50:36 -04:00
description: 'Version range or exact version of a Ruby version to use.'
2019-06-26 14:28:48 -04:00
default: '>= 2.4'
2019-08-13 16:29:23 -04:00
# Deprecated option, do not use. Will not be supported after October 1, 2019
version:
description: 'Deprecated. Use ruby-version instead. Will not be supported after October 1, 2019'
2019-09-12 10:37:13 -04:00
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use ruby-version instead'
2019-06-26 14:22:50 -04:00
runs:
2019-07-09 12:44:34 -04:00
using: 'node12'
2019-07-15 14:26:50 -04:00
main: 'lib/setup-ruby.js'