From 7848b6eb87e3e6f177ca1150806bdb2d99899628 Mon Sep 17 00:00:00 2001 From: Andres Almiray Date: Wed, 2 Feb 2022 22:41:01 +0100 Subject: [PATCH] Remove shell configuration --- README.adoc | 3 --- action.yml | 5 ----- 2 files changed, 8 deletions(-) diff --git a/README.adoc b/README.adoc index 0a32797..a87cf02 100644 --- a/README.adoc +++ b/README.adoc @@ -99,9 +99,6 @@ Following inputs can be used as `step.with` keys Should match any of the link:https://github.com/jreleaser/jreleaser/releases[published releases]. + You may use `latest` to pull the latest stable release or + `early-access` to pull the latest snapshot. -| shell | String | bash | The shell used to run JReleaser. + -Refer to the link:https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell[official docs] -to learn more about the different shell types. | arguments | String | full-release | The JReleaser command to run. | working-directory | String | ${{ github.workspace }} | The directory to change into. + Defaults to the directory the calling workflow runs in. diff --git a/action.yml b/action.yml index da613dd..8acd472 100644 --- a/action.yml +++ b/action.yml @@ -12,11 +12,6 @@ inputs: default: 'latest' required: true - shell: - description: 'The shell used to run JReleaser.' - default: 'bash' - required: false - arguments: description: 'The command-line arguments to be passed to JReleaser.' default: 'full-release'