Skip to content

Commit

Permalink
Hotfix - Actually specify input correctly (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Guinn authored Mar 1, 2023
1 parent b0d289c commit 2358ef8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2358ef8

Please sign in to comment.