From ae0f33f8c8f117b27bc038b349b86f55ca687ea2 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Tue, 21 Nov 2023 20:14:32 +0700 Subject: [PATCH] feat: remove `shell` action input --- README.md | 1 - action.yml | 3 --- 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index 6031cb8..fe719c9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ For more information, refer to [action.yml](./action.yml) and the [GitHub Action | Name | Value Type | Description | | --- | --- | --- | -| `shell` | String | The shell to be used to run the commands. It defaults to `pwsh` on Windows and `bash` on Linux and macOS. Refer to [this](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell) for more information on available shell options. | | `source-dir` | Path | The source directory of the CMake project. It defaults to the current directory. | | `build-dir` | Path | The build directory of the CMake project. It defaults to the `build` directory inside the source directory. | | `generator` | String | The build system generator for the CMake project. It appends the CMake configuration arguments with `-G [val]`. | diff --git a/action.yml b/action.yml index d826a51..58f21b6 100644 --- a/action.yml +++ b/action.yml @@ -5,9 +5,6 @@ branding: color: gray-dark icon: terminal inputs: - shell: - description: The shell to be used to run the commands - required: false source-dir: description: The source directory of the CMake project required: false