Updated name of package.

This commit is contained in:
Derrick Marcey
2019-06-26 14:28:48 -04:00
parent 58d088150c
commit e81d6e6386
3 changed files with 18 additions and 12 deletions

View File

@@ -1,3 +1,9 @@
# Node 12 Template Action # @actions/setup-go
To get started, click the `Use this template` button on this repository [which will create a new repository based on this template](https://github.blog/2019-06-06-generate-new-repositories-with-repository-templates/). # License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
# Contributions
Contributions are welcome! See [Contributor's Guide](docs/contributors.md)

View File

@@ -1,10 +1,10 @@
name: 'Node 12 Template Action' name: 'Setup Ruby for use with actions'
description: 'Get started with Node actions' description: 'Setup a Ruby environment and add it to the PATH'
author: 'GitHub' author: 'GitHub'
inputs: inputs:
myInput: version:
description: 'Input to use' description: 'The Ruby version to use. Defaults to >= 2.4'
default: 'world' default: '>= 2.4'
runs: runs:
using: 'node' using: 'node'
main: 'lib/main.js' main: 'lib/main.js'

View File

@@ -1,8 +1,8 @@
{ {
"name": "node12-template-action", "name": "setup-ruby",
"version": "0.0.0", "version": "0.0.1",
"private": true, "private": true,
"description": "Node 12 template action", "description": "setup ruby action",
"main": "lib/main.js", "main": "lib/main.js",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
@@ -12,11 +12,11 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/actions/start-vm-action.git" "url": "git+https://github.com/actions/setup-ruby.git"
}, },
"keywords": [ "keywords": [
"actions", "actions",
"node", "ruby",
"setup" "setup"
], ],
"author": "GitHub", "author": "GitHub",