Fix typo in inputs expression

This commit is contained in:
David Tolnay 2022-07-20 14:55:40 -07:00
parent 404bb95f09
commit 415f4eec04
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -34,7 +34,7 @@ runs:
echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
echo "::set-output name=downgrade::${{inputs.toolchain == 'nightly' && inputs.components && ' --allow-downgrade' || ''}}"
env:
targets: ${{inputs.targets || input.target || ''}}
targets: ${{inputs.targets || inputs.target || ''}}
components: ${{inputs.components}}
shell: bash