mirror of
https://code.forgejo.org/actions/setup-go.git
synced 2024-11-05 19:45:49 +00:00
Metadata changes
This commit is contained in:
parent
cd176c696b
commit
cef575caea
2 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
||||||
name: 'Setup Node.js for use with actions'
|
name: 'Setup Go for use with actions'
|
||||||
description: 'Setup a Node.js environment and add it to the PATH, additionally providing proxy support'
|
description: 'Setup a Go environment and add it to the PATH, additionally providing proxy support'
|
||||||
author: 'GitHub'
|
author: 'GitHub'
|
||||||
inputs:
|
inputs:
|
||||||
version:
|
version:
|
||||||
|
@ -7,4 +7,4 @@ inputs:
|
||||||
default: '10.x'
|
default: '10.x'
|
||||||
runs:
|
runs:
|
||||||
using: 'node'
|
using: 'node'
|
||||||
main: 'lib/setup-node.js'
|
main: 'lib/setup-go.js'
|
|
@ -2,8 +2,8 @@
|
||||||
"name": "setup-go",
|
"name": "setup-go",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "setup node action",
|
"description": "setup go action",
|
||||||
"main": "lib/setup-node.js",
|
"main": "lib/setup-go.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"format": "prettier --write **/*.ts",
|
"format": "prettier --write **/*.ts",
|
||||||
|
@ -12,11 +12,11 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/actions/setup-node.git"
|
"url": "git+https://github.com/actions/setup-go.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"actions",
|
"actions",
|
||||||
"node",
|
"go",
|
||||||
"setup"
|
"setup"
|
||||||
],
|
],
|
||||||
"author": "GitHub",
|
"author": "GitHub",
|
||||||
|
|
Loading…
Reference in a new issue