From 2358ef8296b7ed66c0051a9f4ac178da875cd8fd Mon Sep 17 00:00:00 2001 From: Jordan Guinn Date: Tue, 28 Feb 2023 17:57:47 -0800 Subject: [PATCH] Hotfix - Actually specify input correctly (#2) --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index ff89e93..bcf1978 100644 --- a/action.yml +++ b/action.yml @@ -20,13 +20,13 @@ runs: shell: bash - name: Install latest EB CLI version - if: "${{ github.event.inputs.version == '' }}" + if: "${{ inputs.version == '' }}" run: python $GITHUB_WORKSPACE/aws-elastic-beanstalk-cli-setup/scripts/ebcli_installer.py shell: bash - name: Install specific EB CLI version - if: "${{ github.event.inputs.version != '' }}" - run: python $GITHUB_WORKSPACE/aws-elastic-beanstalk-cli-setup/scripts/ebcli_installer.py --version ${{ github.event.inputs.version }}" + if: "${{ inputs.version != '' }}" + run: python $GITHUB_WORKSPACE/aws-elastic-beanstalk-cli-setup/scripts/ebcli_installer.py --version ${{ inputs.version }} shell: bash - run: echo "~/.ebcli-virtual-env/executables" >> $GITHUB_PATH