diff --git a/action.yaml b/action.yaml index 6deead8..fdfebde 100644 --- a/action.yaml +++ b/action.yaml @@ -1,12 +1,17 @@ name: Setup Captain description: Installs the Captain CLI +author: RWX +branding: + icon: navigation + color: green inputs: version: description: | Version of the Captain CLI to install. - Must either be "latest" or a semver identifier. + Must either be "v1" or a specific version. + If not specified, "v1" is the default which will install the latest 1.x.x release. default: v1 required: false runs: using: 'node16' - main: 'dist/index.js' + main: 'dist/index.js' diff --git a/package-lock.json b/package-lock.json index 657a6c9..bbd26bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "setup-captain", - "version": "0.1.0", + "version": "1.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "setup-captain", - "version": "0.1.0", + "version": "1.1.1", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index ec0fbb2..9eae0e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-captain", - "version": "1.1.0", + "version": "1.1.1", "description": "This action installs the captain CLI in Github Actions", "main": "dist/index.js", "scripts": {