diff --git a/.github/workflows/full-matrix.yaml b/.github/workflows/full-matrix.yaml index b31b999..3741e08 100644 --- a/.github/workflows/full-matrix.yaml +++ b/.github/workflows/full-matrix.yaml @@ -53,7 +53,6 @@ jobs: - name: Setup nu@nightly uses: hustcer/setup-nu@develop with: - features: full version: nightly enable-plugins: true env: diff --git a/README.md b/README.md index dd7d3e9..f5b9be1 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ the latest version: | `version` | no | A valid NPM-style semver specification, such as `0.86.0`, etc. and `nightly`. | string | \* | | `check-latest` | no | Set to `true` if you want to use the latest version | bool | false | | `enable-plugins` | no | Set to `true` if you want to register the bundled plugins, Nu v0.69 and above is required | bool | false | -| `features` | no | Available choice: `default` or `full`, and the `full` features will include the commands from `extra` and `dataframe`. This option support `Nu` since `v0.86` | string | `default` | +| `features` | no | Available choice: `default` or `full`, and the `full` features will include the commands from `extra` and `dataframe`. This option support `Nu` from `v0.86` to `v0.93` | string | `default` | | `github-token` | no | Your GitHub token or PAT token | string | `${{ github.token }}` | The semver specification is passed directly to NPM's [semver package](https://www.npmjs.com/package/semver). diff --git a/README.zh-CN.md b/README.zh-CN.md index 8aba0c7..88419bb 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -180,7 +180,7 @@ jobs: | `version` | 否 | 合法的 NPM 风格的 semver 版本,such as `0.86.0` 也可以为`nightly`. | string | \* | | `check-latest` | 否 | 可以设置为 `true` 如果你想使用最新的 Nushell 版本 | bool | false | | `enable-plugins` | 否 | 可以设置为 `true` 如果你需要注册二进制包内的插件, 需要 Nu 版本 >= v0.69 | bool | false | -| `features` | 否 | 可选项: `default`,`full`, 设置为 `full` 将包含 `extra` 和 `dataframe` 中的命令, 该选项支持 `Nu` `v0.86` 及以后版本 | string | `default` | +| `features` | 否 | 可选项: `default`,`full`, 设置为 `full` 将包含 `extra` 和 `dataframe` 中的命令, 该选项支持 `Nu` `v0.86` ~ `v0.93` | string | `default` | | `github-token` | 否 | 你的 GitHub Token 或者 PAT token | string | `${{ github.token }}` | 您在 `version` 字段指定的 **semver 版本** 会直接传递给 NPM 的 [semver 包](https://www.npmjs.com/package/semver)。此 GitHub Action 将安装最新的匹配版本。 diff --git a/action.yaml b/action.yaml index 44a45c7..c30fe1e 100644 --- a/action.yaml +++ b/action.yaml @@ -23,7 +23,7 @@ inputs: features: default: 'default' required: false - description: 'Nushell features to install, should be `full` or `default`.' + description: 'Nushell features to install, should be `full` or `default`, `full` can be used for Nu 0.86 ~ 0.93.' check-latest: default: false required: false diff --git a/package.json b/package.json index 92bb763..6ef355a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "setup-nu", - "version": "3.10.0", - "actionVer": "v3.10", + "version": "3.11.0", + "actionVer": "v3.11", "description": "A Github Action to Setup a Nushell Environment to Run Nu Scripts or Commands", "main": "dist/index.js", "private": true,